Added constants for _set_error_mode().

This commit is contained in:
Francois Gouget 2002-11-30 01:52:30 +00:00 committed by Alexandre Julliard
parent 5e0bdcc4d1
commit 79027d16e7
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,12 @@ typedef struct MSVCRT(_ldiv_t) {
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
/* _set_error_mode() constants */
#define _OUT_TO_DEFAULT 0
#define _OUT_TO_STDERR 1
#define _OUT_TO_MSGBOX 2
#define _REPORT_ERRMODE 3
#ifdef __cplusplus
extern "C" {