Changeset 3677 for trunk/src


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

moved clip region/rect functions to user32

Location:
trunk/src/gdi32
Files:
2 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{
  • trunk/src/gdi32/region.cpp

    r3641 r3677  
    1 /* $Id: region.cpp,v 1.4 2000-06-01 11:27:06 sandervl Exp $ */
     1/* $Id: region.cpp,v 1.5 2000-06-08 18:07:07 sandervl Exp $ */
    22
    33/*
     
    9999//******************************************************************************
    100100//******************************************************************************
    101 int WIN32API ExtSelectClipRgn( HDC arg1, HRGN arg2, int  arg3)
    102 {
    103     dprintf(("GDI32: ExtSelectClipRgn"));
    104     return O32_ExtSelectClipRgn(arg1, arg2, arg3);
    105 }
    106 //******************************************************************************
    107 //******************************************************************************
    108101BOOL WIN32API FillRgn( HDC arg1, HRGN arg2, HBRUSH  arg3)
    109102{
     
    145138//******************************************************************************
    146139//******************************************************************************
    147 int WIN32API OffsetClipRgn( HDC arg1, int arg2, int  arg3)
    148 {
    149     dprintf(("GDI32: OffsetClipRgn"));
    150     return O32_OffsetClipRgn(arg1, arg2, arg3);
    151 }
    152 //******************************************************************************
    153 //******************************************************************************
    154140int WIN32API OffsetRgn( HRGN arg1, int arg2, int  arg3)
    155141{
     
    184170    dprintf(("GDI32: RectInRegion"));
    185171    return O32_RectInRegion(arg1, arg2);
    186 }
    187 //******************************************************************************
    188 //******************************************************************************
    189 int WIN32API SelectClipRgn( HDC hdc, HRGN hRgn)
    190 {
    191     dprintf(("GDI32: SelectClipRgn %x %x", hdc, hRgn));
    192     return O32_SelectClipRgn(hdc, hRgn);
    193172}
    194173//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.