[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Good New (was Re: Bad news (was Re: Update))



Christian Reiniger wrote:
> 
> Bjarke Hammersholt Roune wrote:
> 
> >> >> Can you commit the updated VC++ project files & smaller fixes so that
> >> >>Peter can try it with VC++ 6?

I took the stuff from cvs on monday night and after hacking Win32.cpp
into shape got it to compile under VC++ 6. I haven't attempt to compile
the tests yet. 

The problems I found in Win32.cpp were:
- attempts to delete const char* 
+ changed type of ppfDirEntry.Name to char* and used Strdup when
assigning from  
  const char*'s
- default arguments to implementation of methods.
- some warnings about PP_EXPORT being in an unexpected place. 
+ (if worst comes to worst we can always use a .DEF file for this if the
entry points don't use mangle c++ names)

Peter Burns