- Timestamp:
- Dec 16, 1999, 1:10:50 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/gdi32.cpp
r1970 r2083 1 /* $Id: gdi32.cpp,v 1.2 4 1999-12-05 00:30:57sandervl Exp $ */1 /* $Id: gdi32.cpp,v 1.25 1999-12-16 00:10:50 sandervl Exp $ */ 2 2 3 3 /* … … 910 910 //****************************************************************************** 911 911 //****************************************************************************** 912 HRGN WIN32API CreateRectRgn( int arg1, int arg2, int arg3, int arg4) 913 { 914 dprintf(("GDI32: CreateRectRgn")); 915 return O32_CreateRectRgn(arg1, arg2, arg3, arg4); 916 } 917 //****************************************************************************** 918 //****************************************************************************** 919 HRGN WIN32API CreateRectRgnIndirect( const RECT * arg1) 920 { 921 dprintf(("GDI32: CreateRectRgnIndirect")); 922 return O32_CreateRectRgnIndirect(arg1); 923 } 924 //****************************************************************************** 925 //****************************************************************************** 926 HRGN WIN32API CreateRoundRectRgn( int arg1, int arg2, int arg3, int arg4, int arg5, int arg6) 927 { 928 dprintf(("GDI32: CreateRoundRectRgn")); 929 return O32_CreateRoundRectRgn(arg1, arg2, arg3, arg4, arg5, arg6); 912 HRGN WIN32API CreateRectRgn( int nLeftRect, int nTopRect, int nRightRect, int nBottomRect) 913 { 914 dprintf(("GDI32: CreateRectRgn (%d,%d)(%d,%d)", nLeftRect, nTopRect, nRightRect, nBottomRect)); 915 return O32_CreateRectRgn(nLeftRect, nTopRect, nRightRect, nBottomRect); 916 } 917 //****************************************************************************** 918 //****************************************************************************** 919 HRGN WIN32API CreateRectRgnIndirect( const RECT * lpRect) 920 { 921 if(lpRect == NULL) { 922 SetLastError(ERROR_INVALID_PARAMETER); 923 return 0; 924 } 925 dprintf(("GDI32: CreateRectRgnIndirect (%d,%d)(%d,%d)", lpRect->left, lpRect->top, lpRect->right, lpRect->bottom)); 926 return O32_CreateRectRgnIndirect(lpRect); 927 } 928 //****************************************************************************** 929 //****************************************************************************** 930 HRGN WIN32API CreateRoundRectRgn(int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, 931 int nWidthEllipse, int nHeightEllipse) 932 { 933 dprintf(("GDI32: CreateRoundRectRgn (%d,%d)(%d,%d) (%d,%d)", nLeftRect, nTopRect, nRightRect, nBottomRect, nWidthEllipse, nHeightEllipse)); 934 return O32_CreateRoundRectRgn(nLeftRect, nTopRect, nRightRect, nBottomRect, nWidthEllipse, nHeightEllipse); 930 935 } 931 936 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.