Changeset 2859 for trunk/src/gdi32


Ignore:
Timestamp:
Feb 22, 2000, 8:12:53 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk/src/gdi32
Files:
3 edited

Legend:

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

    r2802 r2859  
    1 
    2 /* $Id: dbglocal.cpp,v 1.1 2000-02-16 14:18:09 sandervl Exp $ */
     1/* $Id: dbglocal.cpp,v 1.2 2000-02-22 19:11:48 sandervl Exp $ */
    32
    43/*
     
    1413#include <string.h>
    1514#include "dbglocal.h"
     15
     16#ifdef DEBUG
    1617
    1718USHORT DbgEnabled[DBG_MAXFILES];
     
    7576//******************************************************************************
    7677
     78#endif
  • trunk/src/gdi32/dbglocal.h

    r2802 r2859  
    1 /* $Id: dbglocal.h,v 1.1 2000-02-16 14:18:09 sandervl Exp $ */
     1/* $Id: dbglocal.h,v 1.2 2000-02-22 19:11:49 sandervl Exp $ */
    22
    33/*
     
    4949
    5050#define ParseLogStatus()
    51 #define DBG_LOCALLOG(a)
    5251
    5352#endif //DEBUG
  • trunk/src/gdi32/gdi32.cpp

    r2802 r2859  
    1 /* $Id: gdi32.cpp,v 1.43 2000-02-16 14:18:09 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.44 2000-02-22 19:11:49 sandervl Exp $ */
    22
    33/*
     
    14351435                       INT cbOutput, LPSTR lpszOutData)
    14361436{
    1437   dprintf(("GDI32: ExtEscape, not implemented\n"));
     1437  dprintf(("GDI32: ExtEscape, %x %x %d %x %d %x not implemented", hdc, nEscape, cbInput, lpszInData, cbOutput, lpszOutData));
     1438#ifdef DEBUG
     1439  if(cbInput && lpszInData) {
     1440        ULONG *tmp = (ULONG *)lpszInData;
     1441        for(int i=0;i<cbInput/4;i++) {
     1442                dprintf(("GDI32: ExtEscape par %d: %x", i, *tmp++));
     1443        }
     1444  }
     1445#endif
    14381446  return(0);
    14391447}
Note: See TracChangeset for help on using the changeset viewer.