Changeset 430


Ignore:
Timestamp:
Dec 17, 2009, 1:22:23 AM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

corelib: Created wrappers for all Win* and Gpi* calls that restore the FPU Control Word to what C/C++ programs expect. This fixes #105.

Location:
trunk
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/corelib/global/qt_os2.h

    r195 r430  
    5656#endif
    5757
     58// wrappers for each Win* and Gpi* call that restore the FPU Control Word
     59#include <API_FPU_CW_Wrappers.h>
     60
    5861// Innotek GCC lacks some API functions in its version of OS/2 Toolkit headers
    5962
     
    6366
    6467LONG APIENTRY WinQueryClipRegion(HWND hwnd, HRGN hrgnClip);
     68
     69inline 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
    6577BOOL APIENTRY WinSetClipRegion(HWND hwnd, HRGN hrgnClip);
     78
     79inline 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
    6686
    6787#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.