Ignore:
Timestamp:
Nov 11, 1999, 2:17:33 PM (26 years ago)
Author:
sandervl
Message:

dlg fix, keyboard additions, + misc other things

File:
1 edited

Legend:

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

    r1688 r1704  
    1 /* $Id: dc.cpp,v 1.20 1999-11-10 14:16:44 sandervl Exp $ */
     1/* $Id: dc.cpp,v 1.21 1999-11-11 13:17:29 sandervl Exp $ */
    22
    33/*
     
    875875   if (hwnd == NULLHANDLE)
    876876   {
     877#if 1
     878        // Don't do this for now (causes lots of desktop repaints in WordPad)
     879         O32_SetLastError (ERROR_INVALID_PARAMETER);
     880         return FALSE;
     881#else
    877882      hwnd = HWND_DESKTOP;
    878883      wnd  = Win32BaseWindow::GetWindowFromOS2Handle(OSLIB_HWND_DESKTOP);
     
    885890         return FALSE;
    886891      }
    887 
     892#endif
    888893   }
    889894   else
     
    14151420//******************************************************************************
    14161421//******************************************************************************
     1422INT WIN32API ExcludeUpdateRgn( HDC hDC, HWND  hWnd)
     1423{
     1424    dprintf(("USER32:  ExcludeUpdateRgn\n"));
     1425    hWnd = Win32BaseWindow::Win32ToOS2Handle(hWnd);
     1426
     1427    return O32_ExcludeUpdateRgn(hDC,hWnd);
     1428}
     1429//******************************************************************************
     1430//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.