Ignore:
Timestamp:
Jun 8, 2000, 8:07:07 PM (25 years ago)
Author:
sandervl
Message:

moved clip region/rect functions to user32

File:
1 edited

Legend:

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

    r3648 r3677  
    1 /* $Id: gdi32.cpp,v 1.49 2000-06-01 19:00:05 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.50 2000-06-08 18:07:06 sandervl Exp $ */
    22
    33/*
     
    685685//******************************************************************************
    686686//******************************************************************************
    687 int WIN32API ExcludeClipRect( HDC arg1, int arg2, int arg3, int arg4, int  arg5)
    688 {
    689     dprintf(("GDI32: ExcludeClipRect"));
    690     return O32_ExcludeClipRect(arg1, arg2, arg3, arg4, arg5);
    691 }
    692 //******************************************************************************
    693 //******************************************************************************
    694687HPEN WIN32API ExtCreatePen( DWORD arg1, DWORD arg2, const LOGBRUSH * arg3, DWORD arg4, const DWORD *  arg5)
    695688{
     
    849842//******************************************************************************
    850843//******************************************************************************
    851 int WIN32API GetMapMode( HDC arg1)
    852 {
    853     dprintf(("GDI32: GetMapMode"));
    854     return O32_GetMapMode(arg1);
     844int WIN32API GetMapMode( HDC hdc)
     845{
     846    dprintf(("GDI32: GetMapMode %x", hdc));
     847    return O32_GetMapMode(hdc);
    855848}
    856849//******************************************************************************
     
    10701063//******************************************************************************
    10711064//******************************************************************************
    1072 int WIN32API IntersectClipRect(HDC arg1, int arg2, int arg3, int arg4, int  arg5)
    1073 {
    1074  int rc;
    1075 
    1076   rc = O32_IntersectClipRect(arg1, arg2, arg3, arg4, arg5);
    1077   dprintf(("GDI32: IntersectClipRect returned %d\n", rc));
    1078   return(rc);
    1079 }
    1080 //******************************************************************************
    1081 //******************************************************************************
    10821065ODINFUNCTION3(BOOL, LPtoDP, HDC, hdc, PPOINT, lpPoints, int, nCount)
    10831066{
Note: See TracChangeset for help on using the changeset viewer.