Changeset 430
- Timestamp:
- Dec 17, 2009, 1:22:23 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/corelib/global/qt_os2.h ¶
r195 r430 56 56 #endif 57 57 58 // wrappers for each Win* and Gpi* call that restore the FPU Control Word 59 #include <API_FPU_CW_Wrappers.h> 60 58 61 // Innotek GCC lacks some API functions in its version of OS/2 Toolkit headers 59 62 … … 63 66 64 67 LONG APIENTRY WinQueryClipRegion(HWND hwnd, HRGN hrgnClip); 68 69 inline LONG APIENTRY __FPU_CW_WinQueryClipRegion (HWND hwnd, HRGN hrgnClip) 70 { 71 LONG ret = WinQueryClipRegion (hwnd, hrgnClip); 72 __FPU_CW_Restore(); 73 return ret; 74 } 75 #define WinQueryClipRegion __FPU_CW_WinQueryClipRegion 76 65 77 BOOL APIENTRY WinSetClipRegion(HWND hwnd, HRGN hrgnClip); 78 79 inline LONG APIENTRY __FPU_CW_WinSetClipRegion (HWND hwnd, HRGN hrgnClip) 80 { 81 LONG ret = WinSetClipRegion (hwnd, hrgnClip); 82 __FPU_CW_Restore(); 83 return ret; 84 } 85 #define WinSetClipRegion __FPU_CW_WinSetClipRegion 66 86 67 87 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.