Changeset 5509 for trunk/src/user32/oslibres.h
- Timestamp:
- Apr 15, 2001, 4:29:49 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibres.h
r5385 r5509 1 /* $Id: oslibres.h,v 1. 6 2001-03-27 16:17:52sandervl Exp $ */1 /* $Id: oslibres.h,v 1.7 2001-04-15 14:29:48 sandervl Exp $ */ 2 2 /* 3 3 * Window GUI resource wrapper functions for OS/2 … … 52 52 VOID OSLibWinDestroyPointer(HANDLE hPointer); 53 53 BOOL OSLibWinSetPointer(HANDLE hPointer); 54 BOOL OSLibWinClipCursor(const RECT * pRect); 55 BOOL OSLibWinGetClipCursor(LPRECT pRect); 56 57 58 59 BOOL APIENTRY _WinSetPointerClipRect(HWND hwnd, PRECTL pRect); 60 BOOL APIENTRY _WinQueryPointerClipRect(HWND hwnd, PRECTL pRect); 61 62 inline BOOL APIENTRY WinSetPointerClipRect(HWND hwnd, PRECTL pRect) 63 { 64 BOOL yyrc; 65 USHORT sel = RestoreOS2FS(); 66 67 yyrc = _WinSetPointerClipRect(hwnd, pRect); 68 SetFS(sel); 69 70 return yyrc; 71 } 72 73 inline BOOL APIENTRY WinQueryPointerClipRect(HWND hwnd, PRECTL pRect) 74 { 75 BOOL yyrc; 76 USHORT sel = RestoreOS2FS(); 77 78 yyrc = _WinQueryPointerClipRect(hwnd, pRect); 79 SetFS(sel); 80 81 return yyrc; 82 } 54 83 55 84 #endif //__OSLIBGDI_H__
Note:
See TracChangeset
for help on using the changeset viewer.