Changeset 6331 for trunk/src/gdi32/gdi32.cpp
- Timestamp:
- Jul 14, 2001, 5:31:45 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/gdi32.cpp
r6207 r6331 1 /* $Id: gdi32.cpp,v 1.7 3 2001-07-07 19:05:21 sandervl Exp $ */1 /* $Id: gdi32.cpp,v 1.74 2001-07-14 15:31:41 sandervl Exp $ */ 2 2 3 3 /* … … 262 262 dprintf(("GDI32: GetDCOrgEx %x (%d,%d)", hdc, lpPoint)); 263 263 return O32_GetDCOrgEx(hdc, lpPoint); 264 }265 //******************************************************************************266 //******************************************************************************267 int WIN32API AbortDoc(HDC hdc)268 {269 dprintf(("GDI32: AbortDoc %x", hdc));270 return O32_AbortDoc(hdc);271 264 } 272 265 //****************************************************************************** … … 537 530 //****************************************************************************** 538 531 //****************************************************************************** 539 int WIN32API EndDoc( HDC hdc)540 {541 dprintf(("GDI32: EndDoc %x", hdc));542 return O32_EndDoc(hdc);543 }544 //******************************************************************************545 //******************************************************************************546 int WIN32API EndPage( HDC hdc)547 {548 dprintf(("GDI32: EndPage %x", hdc));549 return O32_EndPage(hdc);550 }551 //******************************************************************************552 //******************************************************************************553 532 BOOL WIN32API EndPath( HDC hdc) 554 533 { … … 1175 1154 //****************************************************************************** 1176 1155 //****************************************************************************** 1177 INT WIN32API StartDocA( HDC arg1, const DOCINFOA *arg2)1178 {1179 dprintf(("GDI32: StartDocA"));1180 return O32_StartDoc(arg1, (LPDOCINFOA)arg2);1181 }1182 //******************************************************************************1183 //******************************************************************************1184 INT WIN32API StartDocW( HDC arg1, const DOCINFOW *arg2)1185 {1186 dprintf(("GDI32: StartDocW STUB"));1187 // NOTE: This will not work as is (needs UNICODE support)1188 // return O32_StartDoc(arg1, arg2);1189 return 0;1190 }1191 //******************************************************************************1192 //******************************************************************************1193 int WIN32API StartPage( HDC arg1)1194 {1195 dprintf(("GDI32: StartPage"));1196 return O32_StartPage(arg1);1197 }1198 1156 //****************************************************************************** 1199 1157 //****************************************************************************** … … 1209 1167 dprintf(("GDI32: WidenPath %x", hdc)); 1210 1168 return O32_WidenPath(hdc); 1211 }1212 //******************************************************************************1213 //TODO: Not implemented1214 //******************************************************************************1215 int WIN32API SetAbortProc(HDC hdc, ABORTPROC lpAbortProc)1216 {1217 dprintf(("GDI32: SetAbortProc - stub (1)w\n"));1218 return(1);1219 1169 } 1220 1170 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.