Diff for /np2/win9x/win32sub.h between versions 1.1 and 1.7

version 1.1, 2005/04/01 15:35:49 version 1.7, 2007/12/28 20:36:40
Line 1 Line 1
   
   #ifdef STRICT
   #define SUBCLASSPROC    WNDPROC
   #else
   #define SUBCLASSPROC    FARPROC
   #endif
   
   // for VC6SDK
   #if !defined(_WIN64)
   #ifndef LONG_PTR
   #define LONG_PTR                        LONG
   #endif
   #ifndef GetWindowLongPtr
   #define GetWindowLongPtr        GetWindowLong
   #endif
   #ifndef SetWindowLongPtr
   #define SetWindowLongPtr        SetWindowLong
   #endif
   #ifndef GWLP_WNDPROC
   #define GWLP_WNDPROC            GWL_WNDPROC
   #endif
   #ifndef GWLP_HINSTANCE
   #define GWLP_HINSTANCE          GWL_HINSTANCE
   #endif
   #ifndef GWLP_HWNDPARENT
   #define GWLP_HWNDPARENT         GWL_HWNDPARENT
   #endif
   #ifndef GWLP_USERDATA
   #define GWLP_USERDATA           GWL_USERDATA
   #endif
   #ifndef GWLP_ID
   #define GWLP_ID                         GWL_ID
   #endif
   #endif
   
   #define LOADSTRING                      LoadString
   
 #ifdef __cplusplus  #ifdef __cplusplus
 extern "C" {  extern "C" {
 #endif  #endif
   
 void __msgbox(const char *title, const char *msg);  void __msgbox(const char *title, const char *msg);
   int loadstringresource(UINT uID, LPTSTR lpszBuffer, int nBufferMax);
   LPTSTR lockstringresource(LPCTSTR lpcszString);
   void unlockstringresource(LPTSTR lpszString);
   
 #ifdef __cplusplus  #ifdef __cplusplus
 }  }

Removed from v.1.1  
changed lines
  Added in v.1.7


RetroPC.NET-CVS <cvs@retropc.net>