Changeset 378 for trunk/src/user32/new/wingdi.cpp
- Timestamp:
- Jul 23, 1999, 9:09:26 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/wingdi.cpp
r340 r378 1 /* $Id: wingdi.cpp,v 1. 4 1999-07-19 18:40:44 sandervlExp $ */1 /* $Id: wingdi.cpp,v 1.5 1999-07-23 19:09:26 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window graphics apis for OS/2 … … 30 30 } 31 31 dprintf(("BeginPaint %X\n", hwnd)); 32 lps->hdc = OSLibWinBeginPaint(window->getOS2WindowHandle(), &lps->rcPaint); 32 return O32_BeginPaint(window->getOS2WindowHandle(),lps); 33 //CB: conflict with Open32 mechanism 34 //lps->hdc = OSLibWinBeginPaint(window->getOS2WindowHandle(), &lps->rcPaint); 33 35 34 36 return lps->hdc; … … 39 41 { 40 42 dprintf(("EndPaint %x\n", hwnd)); 41 return OSLibWinEndPaint(lps->hdc); 43 return O32_EndPaint(hwnd,lps); 44 //CB: dito 45 //return OSLibWinEndPaint(lps->hdc); 42 46 } 43 47 //****************************************************************************** … … 54 58 } 55 59 dprintf(("GetDC %x", hwnd)); 56 return OSLibWinGetPS(window->getOS2WindowHandle()); 60 return O32_GetDC(window->getOS2WindowHandle()); 61 //return OSLibWinGetPS(window->getOS2WindowHandle()); 57 62 } 58 63 //****************************************************************************** … … 70 75 int WIN32API ReleaseDC(HWND hwnd, HDC hdc) 71 76 { 72 return OSLibWinReleasePS(hdc); 77 return O32_ReleaseDC(hwnd,hdc); 78 //return OSLibWinReleasePS(hdc); 73 79 } 74 80 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.