Changeset 963 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Sep 17, 1999, 8:49:53 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r949 r963 1 /* $Id: oslibwin.cpp,v 1. 1 1999-09-15 23:18:54 sandervlExp $ */1 /* $Id: oslibwin.cpp,v 1.2 1999-09-17 18:49:53 dengert Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 183 183 //****************************************************************************** 184 184 //****************************************************************************** 185 BOOL OSLibWinSetFocus(HWND hwndDeskTop,HWND hwndNewFocus) 186 { 187 return WinSetFocus(hwndDeskTop,hwndNewFocus); 185 BOOL OSLibWinSetFocus(HWND hwndDeskTop,HWND hwndNewFocus, BOOL activate) 186 { 187 return WinFocusChange (hwndDeskTop, hwndNewFocus, activate ? FC_NOLOSEACTIVE : 0); 188 } 189 //****************************************************************************** 190 //****************************************************************************** 191 BOOL OSLibWinIsChild (HWND hwnd, HWND hwndOf) 192 { 193 return WinIsChild (hwnd, hwndOf); 188 194 } 189 195 //****************************************************************************** … … 677 683 HWND OSLibWinBeginEnumWindows(HWND hwnd) 678 684 { 679 if(hwnd == OSLIB_HWND_DESKTOP) 685 if(hwnd == OSLIB_HWND_DESKTOP) hwnd = HWND_DESKTOP; 680 686 else 681 if(hwnd == OSLIB_HWND_OBJECT) 687 if(hwnd == OSLIB_HWND_OBJECT) hwnd = HWND_OBJECT; 682 688 683 689 return WinBeginEnumWindows(hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.