Changeset 10005 for trunk/src/msvcrt/msvcrt.h
- Timestamp:
- Apr 10, 2003, 12:28:07 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/msvcrt/msvcrt.h
r9633 r10005 32 32 typedef struct __MSVCRT_thread_data 33 33 { 34 int errno;34 int msv_errno; 35 35 unsigned long doserrno; 36 char *mbstok_next; /* next ptr for mbstok() */ 37 char *efcvt_buffer; /* buffer for ecvt/fcvt */ 36 38 terminate_function terminate_handler; 37 39 unexpected_function unexpected_handler; … … 108 110 #define _RT_BANNER 255 109 111 112 /* Signal types */ 113 114 #define SIGINT_W 2 /* interrupt */ 115 #define SIGILL_W 4 /* illegal instruction - invalid function image */ 116 #define SIGFPE_W 8 /* floating point exception */ 117 #define SIGSEGV_W 11 /* segment violation */ 118 #define SIGTERM_W 15 /* Software termination signal from kill */ 119 #define SIGBREAK_W 21 /* Ctrl-Break sequence */ 120 #define SIGABRT_W 22 /* abnormal termination triggered by abort call */ 121 122 #define SIG_DFL_W (void (__cdecl *)(int))0 /* default signal action */ 123 #define SIG_IGN_W (void (__cdecl *)(int))1 /* ignore signal */ 124 #define SIG_SGE_W (void (__cdecl *)(int))3 /* signal gets error */ 125 #define SIG_ACK_W (void (__cdecl *)(int))4 /* acknowledge */ 126 127 /* signal error value (returned by signal call on error) */ 128 129 #define SIG_ERR (void (__cdecl *)(int))-1 /* signal error value */ 130 131 110 132 #endif /* __WINE_MSVCRT_H */
Note:
See TracChangeset
for help on using the changeset viewer.