Changeset 136 for trunk/include/qwindowdefs_pm.h
- Timestamp:
- Oct 18, 2006, 11:58:35 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/qwindowdefs_pm.h
r113 r136 99 99 const ULONG QT_EXTRAWINDATASIZE = sizeof(LONG) * 2; 100 100 101 #ifdef __cplusplus102 101 class Q_EXPORT QPMObjectWindow 103 102 { … … 124 123 HWND w; 125 124 }; 126 #endif 125 126 // OS/2 system exception handler callback interface 127 128 enum QtSysXcptReq 129 { 130 QtSysXcptReq_AppName = 0, 131 QtSysXcptReq_AppVer = 1, 132 QtSysXcptReq_ReportTo = 2, 133 QtSysXcptReq_ReportSubj = 3, 134 }; 135 136 typedef void (*QtSysXcptWriter)( const char *str ); 137 typedef int (*QtSysXcptCallback)( QtSysXcptReq req, QtSysXcptWriter writer, 138 int reserved ); 139 140 Q_EXPORT QtSysXcptCallback qInstallSysXcptCallback( QtSysXcptCallback cb ); 127 141 128 142 #endif
Note:
See TracChangeset
for help on using the changeset viewer.