Diff for /np2/win9xc/np2.cpp between versions 1.10 and 1.12

version 1.10, 2003/12/08 00:55:34 version 1.12, 2003/12/08 06:24:03
Line 49 Line 49
 static  char            np2help[] = "np2.hlp";  static  char            np2help[] = "np2.hlp";
 // static char          np2resume[] = "sav";  // static char          np2resume[] = "sav";
   
 static  const char      szAppCaption[] = "Neko Project II - C version";  #if defined(CPUCORE_IA32)
                   const char szAppCaption[] = "Neko Project II (IA-32)";
   #else
                   const char szAppCaption[] = "Neko Project II (C Version)";
   #endif
 static  const char      szClassName[] = "NP2-MainWindow";  static  const char      szClassName[] = "NP2-MainWindow";
   
   
Line 805  int WINAPI WinMain(HINSTANCE hInstance,  Line 809  int WINAPI WinMain(HINSTANCE hInstance, 
                 np2.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_ICON1));                  np2.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_ICON1));
                 np2.hCursor = LoadCursor(NULL, IDC_ARROW);                  np2.hCursor = LoadCursor(NULL, IDC_ARROW);
                 np2.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);                  np2.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
                 np2.lpszMenuName = MAKEINTRESOURCE(IDM_MAIN);                  np2.lpszMenuName = MAKEINTRESOURCE(IDR_MAIN);
                 np2.lpszClassName = szClassName;                  np2.lpszClassName = szClassName;
                 if (!RegisterClass(&np2)) {                  if (!RegisterClass(&np2)) {
                         return(FALSE);                          return(FALSE);

Removed from v.1.10  
changed lines
  Added in v.1.12


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