Changeset 1189 for trunk/src/user32/win32wbase.h
- Timestamp:
- Oct 8, 1999, 6:13:09 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r1159 r1189 1 /* $Id: win32wbase.h,v 1.1 4 1999-10-07 09:28:02 sandervlExp $ */1 /* $Id: win32wbase.h,v 1.15 1999-10-08 16:13:09 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 76 76 ULONG MsgKillFocus(HWND hwnd); 77 77 ULONG MsgTimer(ULONG TimerID); 78 78 ULONG MsgScroll(ULONG msg, ULONG scrollCode, ULONG scrollPos); 79 79 ULONG MsgCommand(ULONG cmd, ULONG Id, HWND hwnd); 80 80 ULONG MsgSysCommand(ULONG win32sc, ULONG x, ULONG y); … … 199 199 static Win32BaseWindow *GetWindowFromHandle(HWND hwnd); 200 200 static Win32BaseWindow *GetWindowFromOS2Handle(HWND hwnd); 201 static Win32BaseWindow *GetWindowFromFrameHandle(HWND hwnd); 202 203 PVOID getOldFrameProc() { return pOldFrameProc; }; 204 VOID setOldFrameProc(PVOID aOldFrameProc) { pOldFrameProc = aOldFrameProc; }; 205 ULONG getBorderWidth() { return borderWidth; }; 206 ULONG getBorderHeight() { return borderHeight; }; 201 207 202 208 protected: … … 235 241 BOOL fFirstShow; 236 242 BOOL fIsDialog; 237 BOOL fInternalMsg; //Used to distinguish between messages 243 BOOL fInternalMsg; //Used to distinguish between messages 238 244 //sent by PM and those sent by apps 245 246 PVOID pOldFrameProc; 247 ULONG borderWidth; 248 ULONG borderHeight; 249 239 250 Win32BaseWindow *owner; 240 251
Note:
See TracChangeset
for help on using the changeset viewer.