Diff for /np2/wince/gx/gx.cpp between versions 1.4 and 1.6

version 1.4, 2003/12/05 19:42:04 version 1.6, 2005/02/11 21:17:23
Line 16  enum { Line 16  enum {
 };  };
 #endif  #endif
 #else  #else
   #if defined(SUPPORT_SOFTKBD)
   enum {
           WINDOW_WIDTH    = 640,
           WINDOW_HEIGHT   = 480
   };
   #else
 enum {  enum {
         WINDOW_WIDTH    = 640,          WINDOW_WIDTH    = 640,
         WINDOW_HEIGHT   = 400          WINDOW_HEIGHT   = 400
 };  };
 #endif  #endif
   #endif
   
 #pragma pack(push, 1)  #pragma pack(push, 1)
 typedef struct {  typedef struct {
Line 41  enum { Line 48  enum {
 };  };
   
 #if defined(_WIN32_WCE)  #if defined(_WIN32_WCE)
 static const TCHAR taskbarclass[] = STRLITERAL("HHTaskBar");  static const TCHAR taskbarclass[] = _T("HHTaskBar");
 #else  #else
 static const TCHAR taskbarclass[] = STRLITERAL("Shell_TrayWnd");  static const TCHAR taskbarclass[] = _T("Shell_TrayWnd");
 #endif  #endif
   
   

Removed from v.1.4  
changed lines
  Added in v.1.6


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