Ignore:
Timestamp:
Jun 1, 2000, 9:00:05 PM (25 years ago)
Author:
sandervl
Message:

added more logging

File:
1 edited

Legend:

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

    r3641 r3648  
    1 /* $Id: gdi32.cpp,v 1.48 2000-06-01 11:27:05 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.49 2000-06-01 19:00:05 sandervl Exp $ */
    22
    33/*
     
    1414#include <stdarg.h>
    1515#include <string.h>
     16#include <odinwrap.h>
    1617#include "misc.h"
    1718#include "callback.h"
     
    2425#define DBG_LOCALLOG    DBG_gdi32
    2526#include "dbglocal.h"
     27
     28ODINDEBUGCHANNEL(GDI32-GDI32)
    2629
    2730//******************************************************************************
     
    10771080//******************************************************************************
    10781081//******************************************************************************
    1079 BOOL WIN32API LPtoDP( HDC arg1, PPOINT arg2, int  arg3)
    1080 {
    1081     dprintf(("GDI32: LPtoDP"));
    1082     return O32_LPtoDP(arg1, arg2, arg3);
     1082ODINFUNCTION3(BOOL, LPtoDP, HDC, hdc, PPOINT, lpPoints, int, nCount)
     1083{
     1084    return O32_LPtoDP(hdc, lpPoints, nCount);
    10831085}
    10841086//******************************************************************************
     
    12561258//******************************************************************************
    12571259//******************************************************************************
    1258 int WIN32API SetMapMode( HDC arg1, int  arg2)
    1259 {
    1260     dprintf(("GDI32: SetMapMode"));
    1261     return O32_SetMapMode(arg1, arg2);
    1262 }
    1263 //******************************************************************************
    1264 //******************************************************************************
    1265 DWORD WIN32API SetMapperFlags( HDC arg1, DWORD  arg2)
    1266 {
    1267     dprintf(("GDI32: SetMapperFlags"));
    1268     return O32_SetMapperFlags(arg1, arg2);
    1269 }
    1270 //******************************************************************************
    1271 //******************************************************************************
    1272 BOOL WIN32API SetMiterLimit( HDC arg1, float  arg2, float *  arg3)
    1273 {
    1274     dprintf(("GDI32: SetMiterLimit"));
    1275     return O32_SetMiterLimit(arg1, arg2, arg3);
    1276 }
    1277 //******************************************************************************
    1278 //******************************************************************************
    1279 int WIN32API SetPolyFillMode( HDC arg1, int  arg2)
    1280 {
    1281     dprintf(("GDI32: SetPolyFillMode"));
    1282     return O32_SetPolyFillMode(arg1, arg2);
    1283 }
    1284 //******************************************************************************
    1285 //******************************************************************************
    1286 UINT WIN32API SetTextAlign( HDC arg1, UINT  arg2)
    1287 {
    1288     dprintf(("GDI32: SetTextAlign"));
    1289     return O32_SetTextAlign(arg1, arg2);
    1290 }
    1291 //******************************************************************************
    1292 //******************************************************************************
    1293 int WIN32API SetTextCharacterExtra( HDC arg1, int  arg2)
    1294 {
    1295     dprintf(("GDI32: SetTextCharacterExtra"));
    1296     return O32_SetTextCharacterExtra(arg1, arg2);
    1297 }
    1298 //******************************************************************************
    1299 //******************************************************************************
    1300 BOOL WIN32API SetTextJustification( HDC arg1, int arg2, int  arg3)
    1301 {
    1302     dprintf(("GDI32: SetTextJustification"));
    1303     return O32_SetTextJustification(arg1, arg2, arg3);
     1260ODINFUNCTION2(int, SetMapMode, HDC, hdc, int, fnMapMode)
     1261{
     1262    return O32_SetMapMode(hdc, fnMapMode);
     1263}
     1264//******************************************************************************
     1265//******************************************************************************
     1266ODINFUNCTION2(DWORD, SetMapperFlags, HDC, hdc, DWORD, dwFlag)
     1267{
     1268    return O32_SetMapperFlags(hdc, dwFlag);
     1269}
     1270//******************************************************************************
     1271//******************************************************************************
     1272ODINFUNCTION3(BOOL, SetMiterLimit, HDC, hdc, float, eNewLimit, float* ,peOldLimit)
     1273{
     1274    return O32_SetMiterLimit(hdc, eNewLimit, peOldLimit);
     1275}
     1276//******************************************************************************
     1277//******************************************************************************
     1278ODINFUNCTION2(int, SetPolyFillMode, HDC, hdc, int, iPolyFillMode)
     1279{
     1280    return O32_SetPolyFillMode(hdc, iPolyFillMode);
     1281}
     1282//******************************************************************************
     1283//******************************************************************************
     1284ODINFUNCTION2(UINT, SetTextAlign, HDC, hdc, UINT, fMode)
     1285{
     1286    return O32_SetTextAlign(hdc, fMode);
     1287}
     1288//******************************************************************************
     1289//******************************************************************************
     1290ODINFUNCTION2(int, SetTextCharacterExtra, HDC, hdc, int, nCharExtra)
     1291{
     1292    return O32_SetTextCharacterExtra(hdc, nCharExtra);
     1293}
     1294//******************************************************************************
     1295//******************************************************************************
     1296ODINFUNCTION3(BOOL, SetTextJustification, HDC, hdc, int, nBreakExtra, int, nBreakCount)
     1297{
     1298    return O32_SetTextJustification(hdc, nBreakExtra, nBreakCount);
    13041299}
    13051300//******************************************************************************
     
    13631358//******************************************************************************
    13641359//******************************************************************************
    1365 BOOL WIN32API UnrealizeObject( HGDIOBJ arg1)
    1366 {
    1367     dprintf(("GDI32: UnrealizeObject"));
    1368     return O32_UnrealizeObject(arg1);
    1369 }
    1370 //******************************************************************************
    1371 //******************************************************************************
    1372 BOOL WIN32API WidenPath( HDC arg1)
    1373 {
    1374     dprintf(("GDI32: WidenPath"));
    1375     return O32_WidenPath(arg1);
     1360BOOL WIN32API UnrealizeObject( HGDIOBJ hObject)
     1361{
     1362    dprintf(("GDI32: UnrealizeObject %x", hObject));
     1363    return O32_UnrealizeObject(hObject);
     1364}
     1365//******************************************************************************
     1366//******************************************************************************
     1367BOOL WIN32API WidenPath( HDC hdc)
     1368{
     1369    dprintf(("GDI32: WidenPath %x", hdc));
     1370    return O32_WidenPath(hdc);
    13761371}
    13771372//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.