Ignore:
Timestamp:
Jun 1, 2000, 1:27:57 PM (25 years ago)
Author:
sandervl
Message:

Moved GetClipRgn & GetClipBox into user32 (dc.cpp)

File:
1 edited

Legend:

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

    r3589 r3641  
    1 /* $Id: gdi32.cpp,v 1.47 2000-05-22 19:11:28 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.48 2000-06-01 11:27:05 sandervl Exp $ */
    22
    33/*
     
    240240//******************************************************************************
    241241//******************************************************************************
    242 int WIN32API SetBkMode( HDC arg1, int  arg2)
    243 {
    244     dprintf(("GDI32: SetBkMode\n"));
    245     return O32_SetBkMode(arg1, arg2);
     242int WIN32API SetBkMode( HDC hdc, int mode)
     243{
     244    dprintf(("GDI32: SetBkMode %x %d (old %d)", hdc, mode, O32_GetBkMode(hdc)));
     245    return O32_SetBkMode(hdc, mode);
    246246}
    247247//******************************************************************************
     
    796796//******************************************************************************
    797797//******************************************************************************
    798 int WIN32API GetClipBox( HDC arg1, PRECT  arg2)
    799 {
    800  int rc;
    801 
    802   rc = O32_GetClipBox(arg1, arg2);
    803   dprintf(("GDI32: GetClipBox of %X returned %d\n", arg1, rc));
    804   return(rc);
    805 }
    806 //******************************************************************************
    807 //******************************************************************************
    808798HANDLE WIN32API GetCurrentObject( HDC hdc, UINT arg2)
    809799{
Note: See TracChangeset for help on using the changeset viewer.