Changeset 6902 for trunk/src/user32/win32wbase.h
- Timestamp:
- Oct 1, 2001, 12:24:42 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r6783 r6902 1 /* $Id: win32wbase.h,v 1.12 6 2001-09-22 18:21:00sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.127 2001-09-30 22:24:42 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 20 20 #include <gen_object.h> 21 21 #include <win32wndchild.h> 22 #include <winuser32.h> 22 23 #include <winres.h> 23 24 #include <scroll.h> … … 280 281 void SetVisibleRegionChanged(BOOL changed) { fVisibleRegionChanged = changed; }; 281 282 BOOL IsVisibleRegionChanged() { return fVisibleRegionChanged; }; 282 283 BOOL setVisibleRgnNotifyProc(VISRGN_NOTIFY_PROC lpNotifyProc, DWORD dwUserData) 284 { 285 lpVisRgnNotifyProc = lpNotifyProc; 286 dwVisRgnNotifyParam = dwUserData; 287 return TRUE; 288 } 289 void callVisibleRgnNotifyProc(BOOL fDrawingAllowed) 290 { 291 if(lpVisRgnNotifyProc) { 292 lpVisRgnNotifyProc(getWindowHandle(), fDrawingAllowed, dwVisRgnNotifyParam); 293 } 294 } 283 295 int GetWindowTextLength(BOOL fUnicode); 284 296 int GetWindowTextLengthA() { return GetWindowTextLength(FALSE); }; … … 430 442 431 443 PROPERTY *propertyList; 444 445 VISRGN_NOTIFY_PROC lpVisRgnNotifyProc; 446 DWORD dwVisRgnNotifyParam; 432 447 433 448 HANDLE hTaskList; //PM specific (switchentry handle)
Note:
See TracChangeset
for help on using the changeset viewer.