- Timestamp:
- Sep 5, 1999, 5:59:37 PM (26 years ago)
- Location:
- trunk/src/user32/new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wbase.cpp
r835 r836 1 /* $Id: win32wbase.cpp,v 1.1 0 1999-09-05 15:53:09 sandervlExp $ */1 /* $Id: win32wbase.cpp,v 1.11 1999-09-05 15:59:36 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 429 429 #endif 430 430 431 // fakeWinBase.hwndThisObject = OS2Hwnd; 432 // fakeWinBase.pWindowClass = windowClass; 433 // *(PULONG)&fakeWinBase -= 0x90 - 8; 431 fakeWinBase.hwndThis = OS2Hwnd; 432 fakeWinBase.pWindowClass = windowClass; 434 433 // SetFakeOpen32(); 435 434 -
trunk/src/user32/new/win32wbase.h
r835 r836 1 /* $Id: win32wbase.h,v 1. 8 1999-09-05 15:53:10 sandervlExp $ */1 /* $Id: win32wbase.h,v 1.9 1999-09-05 15:59:37 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 17 17 18 18 #include <win32class.h> 19 //#include "open32wbase.h"19 #include "open32wbase.h" 20 20 #include <gen_object.h> 21 21 #include <win32wndchild.h> … … 148 148 BOOL CloseWindow(); 149 149 static HWND GetActiveWindow(); 150 150 //Window handle has already been verified, so just return true 151 151 BOOL IsWindow() { return TRUE; }; 152 152 BOOL IsDialog() { return fIsDialog; }; 153 153 154 154 BOOL IsWindowEnabled(); … … 236 236 BOOL fCreated; 237 237 BOOL fFirstShow; 238 238 BOOL fIsDialog; 239 239 240 240 Win32BaseWindow *owner; … … 276 276 277 277 public: 278 //void SetFakeOpen32() { WinSetDAXData (OS2Hwnd, &fakeWinBase); }279 //void RemoveFakeOpen32() { WinSetDAXData (OS2Hwnd, NULL); }280 281 //fakeOpen32WinBaseClass fakeWinBase;278 void SetFakeOpen32() { WinSetDAXData (OS2Hwnd, &fakeWinBase); } 279 void RemoveFakeOpen32() { WinSetDAXData (OS2Hwnd, NULL); } 280 281 fakeOpen32WinBaseClass fakeWinBase; 282 282 }; 283 283
Note:
See TracChangeset
for help on using the changeset viewer.