On November 4, 2002 11:19 pm, Greg Turner wrote: > > +#include "windows.h" > > would it be more general to do something like: > > #if defined(__WINE__) > #include "windows.h" > #else > #include <windows.h> > #endif > > Or is it OK, as is, for MSVC/cygwin?
The way you did it is just fine, don't do the more 'general' one. It gains you nothing but ugliness. ;) -- Dimi.