On 2003-07-03 Voguemaster wrote:
> The problem is very basic: Linux and Win32 have different include files
> for some things and placing #include directives inside #ifdef doesn't
> do the trick (it nullifies the #ifdef possibly ?????).
What exactly is not working?
For me it always worked just fine like this:
#ifdef WIN32
#include <windoze.h>
#else
#include <unistd.h>
#endif
=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]