]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/wrapwin.h
   1 ///////////////////////////////////////////////////////////////////////////// 
   3 // Purpose:     Wrapper around <windows.h>, to be included instead of it 
   4 // Author:      Vaclav Slavik 
   7 // Copyright:   (c) 2003 Vaclav Slavik 
   8 // Licence:     wxWindows licence 
   9 ///////////////////////////////////////////////////////////////////////////// 
  11 #ifndef _WX_WRAPWIN_H_ 
  12 #define _WX_WRAPWIN_H_ 
  14 #include "wx/platform.h" 
  20 // define _WIN32_IE to a high value because we always check for the version 
  21 // of installed DLLs at runtime anyway unless the user really doesn't want it 
  23     // for compilers that use w32api headers: w32api must be >= 1.1: 
  24     #if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || \ 
  25         defined( __CYGWIN__ ) || \ 
  26         (defined(__WATCOMC__) && __WATCOMC__ >= 1200) || \ 
  27         defined(__DIGITALMARS__) && \ 
  28         !wxCHECK_W32API_VERSION(1,1) 
  29         #define _WIN32_IE 0x300 
  31         // highest known value at the time of this writing (Windows Server 2003) 
  32         #define _WIN32_IE 0x502 
  34 #endif // !defined(_WIN32_IE) 
  37 #include "wx/msw/winundef.h" 
  39 #endif // _WX_WRAPWIN_H_