Ignore:
Timestamp:
Jan 11, 2000, 12:29:16 AM (26 years ago)
Author:
sandervl
Message:

get/peekmessage fixes, timer fix, (user/new) replaced wm_hittest code; added wm_ncactivate, changed system menu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32wbase.h

    r2396 r2400  
    1 /* $Id: win32wbase.h,v 1.21 2000-01-10 17:18:10 cbratschi Exp $ */
     1/* $Id: win32wbase.h,v 1.22 2000-01-10 23:29:15 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    8484         ULONG  MsgEraseBackGround(HDC hdc);
    8585         ULONG  MsgInitMenu(MSG *msg);
    86          ULONG  MsgHitTest(MSG *msg);
     86         ULONG  MsgHitTest(ULONG x, ULONG y);
    8787         ULONG  MsgNCPaint();
    8888         ULONG  MsgFormatFrame();
     
    113113
    114114         LONG   getLastHitTestVal()             { return lastHitTestVal; }
    115          BOOL   getIgnoreHitTest()              { return fIgnoreHitTest; }
    116          VOID   setIgnoreHitTest(BOOL ignore)   { fIgnoreHitTest = ignore; }
    117115
    118116         DWORD  getWindowContextHelpId()        { return contextHelpId; };
     
    162160         HMENU  GetMenu()                           { return hMenu; };
    163161         VOID   SetMenu(HMENU newMenu)              { hMenu = newMenu; };
    164          HMENU  GetSysMenu()                        { return hSysMenu; };
    165          VOID   SetSysMenu(HMENU newSysMenu)        { hSysMenu = newSysMenu; };
     162         HMENU  GetSystemMenu(BOOL fRevert);
     163         HMENU  getSystemMenu()                     { return hSysMenu; }
    166164
    167165         BOOL   SetIcon(HICON hIcon);
     
    205203         BOOL   IsWindowUnicode();
    206204
    207          BOOL   GetWindowRect(PRECT pRect);
    208205         int    GetWindowTextLength();
    209206         int    GetWindowTextA(LPSTR lpsz, int cch);
     
    300297        DWORD   contextHelpId;
    301298        LONG    lastHitTestVal;         //Last value returned by WM_NCHITTEST handler
    302         BOOL    fIgnoreHitTest;         //Use WinWindowFromPoint during WM_HITTEST
    303299
    304300        BOOL    isIcon;
Note: See TracChangeset for help on using the changeset viewer.