Ignore:
Timestamp:
Sep 8, 2000, 8:08:58 PM (25 years ago)
Author:
sandervl
Message:

put back original GetWindow

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/window.cpp

    r4211 r4225  
    1 /* $Id: window.cpp,v 1.76 2000-09-07 22:23:07 phaller Exp $ */
     1/* $Id: window.cpp,v 1.77 2000-09-08 18:08:58 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    1919 */
    2020
    21 /*****************************************************************************
    22  * Includes                                                                  *
    23  *****************************************************************************/
    24 
    25 #include <odin.h>
    26 #include <odinwrap.h>
    27 #include <os2sel.h>
    28 
    29 
    3021#include <os2win.h>
    3122#include <misc.h>
     
    4536#define DBG_LOCALLOG    DBG_window
    4637#include "dbglocal.h"
    47 
    48 /*****************************************************************************
    49  * Defines                                                                   *
    50  *****************************************************************************/
    51 
    52 ODINDEBUGCHANNEL(USER32-WINDOW)
    53 
    5438
    5539//******************************************************************************
     
    451435//******************************************************************************
    452436//******************************************************************************
    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)
     437HWND WIN32API GetWindow(HWND hwnd, UINT uCmd)
    459438{
    460439  Win32BaseWindow *window;
     
    467446        return 0;
    468447    }
    469     rc = window->GetWindow(uCmd);
    470     return rc;
     448    return window->GetWindow(uCmd);
    471449}
    472450//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.