Ignore:
Timestamp:
Sep 10, 1999, 9:00:11 PM (26 years ago)
Author:
dengert
Message:

some more DC related functions

File:
1 edited

Legend:

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

    r833 r903  
    1 /* $Id: window.cpp,v 1.23 1999-09-05 12:03:34 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.24 1999-09-10 19:00:11 dengert Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    7373    //      Wine seems to assume it's a string though...
    7474    if(!stricmp(className, MDICLIENTCLASSNAMEA)) {
    75         window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, FALSE);
     75        window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, FALSE);
    7676    }
    7777    else {
    78         window = new Win32BaseWindow( &cs, classAtom, FALSE );
     78        window = new Win32BaseWindow( &cs, classAtom, FALSE );
    7979    }
    8080    if(window == NULL)
     
    137137    //      Wine seems to assume it's a string though...
    138138    if(!lstrcmpW(className, (LPWSTR)MDICLIENTCLASSNAMEW)) {
    139         window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, TRUE);
     139        window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, TRUE);
    140140    }
    141141    else {
    142         window = new Win32BaseWindow( &cs, classAtom, TRUE );
     142        window = new Win32BaseWindow( &cs, classAtom, TRUE );
    143143    }
    144144    if(window == NULL)
     
    821821 *****************************************************************************/
    822822
    823 HWND WIN32API ChildWindowFromPointEx (HWND hwndParent, POINT pt, UINT uFlags) 
     823HWND WIN32API ChildWindowFromPointEx (HWND hwndParent, POINT pt, UINT uFlags)
    824824{
    825825        RECT rect;
     
    995995//******************************************************************************
    996996//******************************************************************************
     997#if 0
    997998BOOL WIN32API GetUpdateRect( HWND hwnd, PRECT lpRect, BOOL  bErase)
    998999{
     
    10021003    return OSLibWinQueryUpdateRect(Win32BaseWindow::Win32ToOS2Handle(hwnd), lpRect);
    10031004}
     1005#endif
    10041006//******************************************************************************
    10051007//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.