On 11/7/2011 1:10 PM, Jon TURNEY wrote: > I see what you are trying to do here, but I'm not sure it actually adds > any clarity. > > I think I'd just prefer to assume the knowledge that WIN32 and CYGWIN > are mutually exclusive, so '#if defined(WIN32) && !defined(__CYGWIN__)' > can just be written '#ifdef WIN32'
But this isn't true if you ever #include any of the w32api headers. Then you get WIN32 defined, even on cygwin... windef.h: #ifndef WIN32 #define WIN32 #endif #ifndef _WIN32 #define _WIN32 #endif -- Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
