Ignore:
Timestamp:
Jul 14, 2001, 5:31:45 PM (24 years ago)
Author:
sandervl
Message:

implemented StartDocW

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/gdi32.cpp

    r6207 r6331  
    1 /* $Id: gdi32.cpp,v 1.73 2001-07-07 19:05:21 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.74 2001-07-14 15:31:41 sandervl Exp $ */
    22
    33/*
     
    262262    dprintf(("GDI32: GetDCOrgEx %x (%d,%d)", hdc, lpPoint));
    263263    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);
    271264}
    272265//******************************************************************************
     
    537530//******************************************************************************
    538531//******************************************************************************
    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 //******************************************************************************
    553532BOOL WIN32API EndPath( HDC hdc)
    554533{
     
    11751154//******************************************************************************
    11761155//******************************************************************************
    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 }
    11981156//******************************************************************************
    11991157//******************************************************************************
     
    12091167    dprintf(("GDI32: WidenPath %x", hdc));
    12101168    return O32_WidenPath(hdc);
    1211 }
    1212 //******************************************************************************
    1213 //TODO: Not implemented
    1214 //******************************************************************************
    1215 int WIN32API SetAbortProc(HDC hdc, ABORTPROC lpAbortProc)
    1216 {
    1217   dprintf(("GDI32: SetAbortProc - stub (1)w\n"));
    1218   return(1);
    12191169}
    12201170//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.