Diff for /np2/win9x/dialog/np2class.cpp between versions 1.2 and 1.3

version 1.2, 2003/11/01 22:23:04 version 1.3, 2003/11/03 00:49:55
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
   #include        <prsht.h>
 #include        "resource.h"  #include        "resource.h"
 #include        "winloc.h"  #include        "winloc.h"
 #include        "np2class.h"  #include        "np2class.h"
Line 54  void np2class_move(HWND hWnd, int posx,  Line 55  void np2class_move(HWND hWnd, int posx, 
         MoveWindow(hWnd, posx, posy, cx, cy, TRUE);          MoveWindow(hWnd, posx, posy, cx, cy, TRUE);
 }  }
   
   // ----
   
   int CALLBACK np2class_propetysheet(HWND hWndDlg, UINT uMsg, LPARAM lParam) {
   
           if (uMsg == PSCB_INITIALIZED) {
                   SetWindowLong(hWndDlg, GWL_EXSTYLE,
                                   GetWindowLong(hWndDlg, GWL_EXSTYLE) & (~WS_EX_CONTEXTHELP));
           }
           return(0);
   }
   
   
 // ----  // ----
   

Removed from v.1.2  
changed lines
  Added in v.1.3


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