Go to the documentation of this file.00001 #ifndef __NWINDOWS_H__
00002 #define __NWINDOWS_H__
00003
00004 #if !defined( WIN32_PLATFORM ) && !defined( NIX_PLATFORM ) && !defined( MINGW_PLATFORM ) && !defined( CYGWIN_PLATFORM )
00005 #define WIN32_PLATFORM
00006 #endif
00007
00008 #if defined( WIN32_PLATFORM ) || defined( MINGW_PLATFORM )
00009 #include <windows.h>
00010 #include <aclapi.h>
00011
00012 #undef CreateDirectory
00013 #undef LoadLibrary
00014 #undef DeleteFile
00015 #undef CreateMutex
00016 #undef CreateProcess
00017 #undef TerminateProcess
00018 #endif
00019
00020 #endif