Ignore:
Timestamp:
Mar 29, 2003, 5:38:01 PM (23 years ago)
Author:
sandervl
Message:

some minor updates

File:
1 edited

Legend:

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

    r9941 r9953  
    1 /* $Id: win32wbase.h,v 1.151 2003-03-27 10:42:42 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.152 2003-03-29 16:38:01 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    286286         void   SetVisibleRegionChanged(BOOL changed) { fVisibleRegionChanged = changed; };
    287287         BOOL   IsVisibleRegionChanged()              { return fVisibleRegionChanged; };
    288          BOOL   setVisibleRgnNotifyProc(VISRGN_NOTIFY_PROC lpNotifyProc, DWORD dwUserData)
    289          {
    290              lpVisRgnNotifyProc  = lpNotifyProc;
    291              dwVisRgnNotifyParam = dwUserData;
    292              return TRUE;
    293          }
    294          void   callVisibleRgnNotifyProc(BOOL fDrawingAllowed)
    295          {
    296              if(lpVisRgnNotifyProc) {
    297                  lpVisRgnNotifyProc(getWindowHandle(), fDrawingAllowed, dwVisRgnNotifyParam);
    298              }
    299          }
     288         BOOL   setVisibleRgnNotifyProc(VISRGN_NOTIFY_PROC lpNotifyProc, DWORD dwUserData);
     289         void   callVisibleRgnNotifyProc(BOOL fDrawingAllowed);
     290
    300291         int    GetWindowTextLength(BOOL fUnicode);
    301292         int    GetWindowTextLengthA() { return GetWindowTextLength(FALSE); };
     
    422413                 fEraseBkgndFlag:1,
    423414                 fIsDragDropActive:1,
    424                  fDirtyUpdateRegion:1;
     415                 fDirtyUpdateRegion:1,
     416                 fWindowLocked:1;
    425417
    426418        ULONG   state;
Note: See TracChangeset for help on using the changeset viewer.