Changeset 4225 for trunk/src/user32/window.cpp
- Timestamp:
- Sep 8, 2000, 8:08:58 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r4211 r4225 1 /* $Id: window.cpp,v 1.7 6 2000-09-07 22:23:07 phallerExp $ */1 /* $Id: window.cpp,v 1.77 2000-09-08 18:08:58 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 19 19 */ 20 20 21 /*****************************************************************************22 * Includes *23 *****************************************************************************/24 25 #include <odin.h>26 #include <odinwrap.h>27 #include <os2sel.h>28 29 30 21 #include <os2win.h> 31 22 #include <misc.h> … … 45 36 #define DBG_LOCALLOG DBG_window 46 37 #include "dbglocal.h" 47 48 /*****************************************************************************49 * Defines *50 *****************************************************************************/51 52 ODINDEBUGCHANNEL(USER32-WINDOW)53 54 38 55 39 //****************************************************************************** … … 451 435 //****************************************************************************** 452 436 //****************************************************************************** 453 //HWND WIN32API GetWindow(HWND hwnd, UINT uCmd) 454 // @@@PH 2000/09/07: it seems GetWindow came back with FS: corrupted 455 // when trying with Netscape. 456 ODINFUNCTION2(HWND, GetWindow, 457 HWND, hwnd, 458 UINT, uCmd) 437 HWND WIN32API GetWindow(HWND hwnd, UINT uCmd) 459 438 { 460 439 Win32BaseWindow *window; … … 467 446 return 0; 468 447 } 469 rc = window->GetWindow(uCmd); 470 return rc; 448 return window->GetWindow(uCmd); 471 449 } 472 450 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.