Changeset 3677 for trunk/src/gdi32/gdi32.cpp
- Timestamp:
- Jun 8, 2000, 8:07:07 PM (25 years ago)
- 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: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 {
Note:
See TracChangeset
for help on using the changeset viewer.