Changeset 330 for trunk/src/user32/new/win32wnd.h
- Timestamp:
- Jul 18, 1999, 7:12:03 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.h
r329 r330 1 /* $Id: win32wnd.h,v 1.1 1 1999-07-18 14:56:37sandervl Exp $ */1 /* $Id: win32wnd.h,v 1.12 1999-07-18 17:12:03 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 124 124 Win32WndClass *getClass() { return windowClass; }; 125 125 126 static HWND Win32ToOS2Handle(HWND hwnd) 127 { 128 Win32Window *window = GetWindowFromHandle(hwnd); 129 130 if(window) { 131 return window->getOS2WindowHandle(); 132 } 133 else return hwnd; //OS/2 window handle 134 } 135 136 static HWND OS2ToWin32Handle(HWND hwnd) 137 { 138 Win32Window *window = GetWindowFromOS2Handle(hwnd); 139 140 if(window) { 141 return window->getWindowHandle(); 142 } 143 else return hwnd; //OS/2 window handle 144 } 145 126 146 static Win32Window *GetWindowFromHandle(HWND hwnd); 127 147 static Win32Window *GetWindowFromOS2Handle(HWND hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.