Changeset 923 for trunk/src/user32/new/wingdi.cpp
- Timestamp:
- Sep 13, 1999, 6:13:46 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/wingdi.cpp
r911 r923 1 /* $Id: wingdi.cpp,v 1.1 5 1999-09-12 15:44:20dengert Exp $ */1 /* $Id: wingdi.cpp,v 1.16 1999-09-13 16:13:46 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window graphics apis for OS/2 … … 33 33 return 0; 34 34 } 35 // !! there is no HDC to paint on !!! 35 // !! there is no HDC to paint on !!! window->MsgEraseBackGround(hdc); 36 36 #ifdef OPEN32_GDI 37 37 hdc = O32_BeginPaint(window->getOS2WindowHandle(),lps); … … 97 97 return GetDC(hwnd); 98 98 } 99 #endif100 99 101 100 //****************************************************************************** … … 112 111 //****************************************************************************** 113 112 //****************************************************************************** 113 114 114 HDC WIN32API GetWindowDC(HWND hwnd) 115 115 { … … 118 118 window = Win32BaseWindow::GetWindowFromHandle(hwnd); 119 119 if(!window) { 120 121 120 dprintf(("GetWindowDC, window %x not found", hwnd)); 121 return 0; 122 122 } 123 123 dprintf(("GetWindowDC %x", hwnd)); … … 128 128 #endif 129 129 } 130 #endif 130 131 //****************************************************************************** 131 132 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.