Changeset 2273 for trunk/src/gdi32/gdi32.cpp
- Timestamp:
- Dec 30, 1999, 7:51:48 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/gdi32.cpp
r2267 r2273 1 /* $Id: gdi32.cpp,v 1.2 7 1999-12-30 11:21:30sandervl Exp $ */1 /* $Id: gdi32.cpp,v 1.28 1999-12-30 18:51:48 sandervl Exp $ */ 2 2 3 3 /* … … 197 197 DWORD WIN32API GetObjectType( HGDIOBJ arg1) 198 198 { 199 dprintf (("GDI32: GetObjectType\n"));199 dprintf2(("GDI32: GetObjectType\n")); 200 200 return O32_GetObjectType(arg1); 201 201 } … … 204 204 BOOL WIN32API DeleteObject(HANDLE hObj) 205 205 { 206 dprintf(("GDI32: DeleteObject \n"));206 dprintf(("GDI32: DeleteObject %x", hObj)); 207 207 DIBSection::deleteSection((DWORD)hObj); 208 208 return O32_DeleteObject(hObj); … … 210 210 //****************************************************************************** 211 211 //****************************************************************************** 212 BOOL WIN32API DeleteDC( HDC arg1)213 { 214 dprintf(("GDI32: DeleteDC \n"));215 return O32_DeleteDC( arg1);212 BOOL WIN32API DeleteDC( HDC hdc) 213 { 214 dprintf(("GDI32: DeleteDC %x", hdc)); 215 return O32_DeleteDC(hdc); 216 216 } 217 217 //****************************************************************************** … … 2190 2190 HPALETTE hpalCur, hpalTmp; 2191 2191 DIBSection *dsect = new DIBSection((WINBITMAPINFOHEADER *)&pbmi->bmiHeader, (DWORD)res, fFlip); 2192 dprintf(("Constructor returned\n"));2193 2192 2194 2193 if(NULL!=dsect)
Note:
See TracChangeset
for help on using the changeset viewer.