Changeset 1025 for trunk/src/user32/win32wbase.h
- Timestamp:
- Sep 23, 1999, 6:44:33 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r1005 r1025 1 /* $Id: win32wbase.h,v 1. 4 1999-09-22 08:58:36sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.5 1999-09-23 16:44:33 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 186 186 BOOL fUnicode = 0); 187 187 188 static HWND Win32ToOS2Handle(HWND hwnd) 189 { 190 Win32BaseWindow *window = GetWindowFromHandle(hwnd); 191 192 if(window) { 193 return window->getOS2WindowHandle(); 194 } 195 else return hwnd; //OS/2 window handle 196 } 197 198 static HWND OS2ToWin32Handle(HWND hwnd) 199 { 200 Win32BaseWindow *window = GetWindowFromOS2Handle(hwnd); 201 202 if(window) { 203 return window->getWindowHandle(); 204 } 205 else return hwnd; //OS/2 window handle 206 } 188 static HWND Win32ToOS2Handle(HWND hwnd); 189 static HWND OS2ToWin32Handle(HWND hwnd); 207 190 208 191 static Win32BaseWindow *GetWindowFromHandle(HWND hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.