- Timestamp:
- Jun 8, 2000, 8:07:07 PM (25 years ago)
- 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:05sandervl Exp $ */1 /* $Id: gdi32.cpp,v 1.50 2000-06-08 18:07:06 sandervl Exp $ */ 2 2 3 3 /* … … 685 685 //****************************************************************************** 686 686 //****************************************************************************** 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 //******************************************************************************694 687 HPEN WIN32API ExtCreatePen( DWORD arg1, DWORD arg2, const LOGBRUSH * arg3, DWORD arg4, const DWORD * arg5) 695 688 { … … 849 842 //****************************************************************************** 850 843 //****************************************************************************** 851 int WIN32API GetMapMode( HDC arg1)852 { 853 dprintf(("GDI32: GetMapMode "));854 return O32_GetMapMode( arg1);844 int WIN32API GetMapMode( HDC hdc) 845 { 846 dprintf(("GDI32: GetMapMode %x", hdc)); 847 return O32_GetMapMode(hdc); 855 848 } 856 849 //****************************************************************************** … … 1070 1063 //****************************************************************************** 1071 1064 //****************************************************************************** 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 //******************************************************************************1082 1065 ODINFUNCTION3(BOOL, LPtoDP, HDC, hdc, PPOINT, lpPoints, int, nCount) 1083 1066 { -
trunk/src/gdi32/region.cpp
r3641 r3677 1 /* $Id: region.cpp,v 1. 4 2000-06-01 11:27:06sandervl Exp $ */1 /* $Id: region.cpp,v 1.5 2000-06-08 18:07:07 sandervl Exp $ */ 2 2 3 3 /* … … 99 99 //****************************************************************************** 100 100 //****************************************************************************** 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 //******************************************************************************108 101 BOOL WIN32API FillRgn( HDC arg1, HRGN arg2, HBRUSH arg3) 109 102 { … … 145 138 //****************************************************************************** 146 139 //****************************************************************************** 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 //******************************************************************************154 140 int WIN32API OffsetRgn( HRGN arg1, int arg2, int arg3) 155 141 { … … 184 170 dprintf(("GDI32: RectInRegion")); 185 171 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);193 172 } 194 173 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.