Fix all defines on Windows

This commit is contained in:
Andy Cedilnik 2002-09-19 11:00:48 -04:00
parent 1cce2ed6e7
commit 5eeb0793ae

View File

@ -1,12 +1,32 @@
#ifdef WIN32 #ifdef WIN32
#ifndef __WIN32
# define __WIN32 # define __WIN32
#endif
#ifndef _WINDOWS
# define _WINDOWS # define _WINDOWS
#endif
#ifndef __WINDOWS__
# define __WINDOWS__ # define __WINDOWS__
#endif
#ifndef __WXMSW__
# define __WXMSW__ # define __WXMSW__
#endif
#ifndef __WIN32__
# define __WIN32__ # define __WIN32__
#endif
#ifndef WINVER
# define WINVER 0x0400 # define WINVER 0x0400
#endif
#ifndef STRICT
# define STRICT # define STRICT
#endif
#include "wx/defs.h" #include "wx/defs.h"