Diff for /np2/win9x/mousemng.cpp between versions 1.5 and 1.7

version 1.5, 2004/02/13 20:31:55 version 1.7, 2007/11/11 07:11:26
Line 9 Line 9
 typedef struct {  typedef struct {
         SINT16  x;          SINT16  x;
         SINT16  y;          SINT16  y;
         BYTE    btn;          UINT8   btn;
         UINT    flag;          UINT    flag;
 } MOUSEMNG;  } MOUSEMNG;
   
 static  MOUSEMNG        mousemng;  static  MOUSEMNG        mousemng;
   
   
 BYTE mousemng_getstat(SINT16 *x, SINT16 *y, int clear) {  UINT8 mousemng_getstat(SINT16 *x, SINT16 *y, int clear) {
   
         *x = mousemng.x;          *x = mousemng.x;
         *y = mousemng.y;          *y = mousemng.y;
Line 34  static void getmaincenter(POINT *cp) { Line 34  static void getmaincenter(POINT *cp) {
   
         RECT    rct;          RECT    rct;
   
         GetWindowRect(hWndMain, &rct);          GetWindowRect(g_hWndMain, &rct);
         cp->x = (rct.right + rct.left) / 2;          cp->x = (rct.right + rct.left) / 2;
         cp->y = (rct.bottom + rct.top) / 2;          cp->y = (rct.bottom + rct.top) / 2;
 }  }
Line 45  static void mousecapture(BOOL capture) { Line 45  static void mousecapture(BOOL capture) {
         POINT   cp;          POINT   cp;
         RECT    rct;          RECT    rct;
   
         style = GetClassLong(hWndMain, GCL_STYLE);          style = GetClassLong(g_hWndMain, GCL_STYLE);
         if (capture) {          if (capture) {
                 ShowCursor(FALSE);                  ShowCursor(FALSE);
                 getmaincenter(&cp);                  getmaincenter(&cp);
Line 62  static void mousecapture(BOOL capture) { Line 62  static void mousecapture(BOOL capture) {
                 ClipCursor(NULL);                  ClipCursor(NULL);
                 style |= CS_DBLCLKS;                  style |= CS_DBLCLKS;
         }          }
         SetClassLong(hWndMain, GCL_STYLE, style);          SetClassLong(g_hWndMain, GCL_STYLE, style);
 }  }
   
 void mousemng_initialize(void) {  void mousemng_initialize(void) {

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


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