ReactOS
0.4.16-dev-942-g91fadeb
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
set_error_mode.cpp
Go to the documentation of this file.
1
/***
2
*errmode.c - modify __error_mode and __acrt_app_type
3
*
4
* Copyright (c) Microsoft Corporation. All rights reserved.
5
*
6
*Purpose:
7
* Defines _set_error_mode() and _set_app_type(), the routines used
8
* to modify __error_mode and __acrt_app_type variables. Together, these
9
* two variables determine how/where the C runtime writes error
10
* messages.
11
*
12
*******************************************************************************/
13
14
#include <
corecrt_internal.h
>
15
#include <stdlib.h>
16
17
extern
"C"
{
18
19
20
21
/*
22
* __error_mode, together with __acrt_app_type, determine how error messages
23
* are written out.
24
*/
25
static
int
__acrt_error_mode
=
_OUT_TO_DEFAULT
;
26
27
/***
28
*int _set_error_mode(int modeval) - interface to change __error_mode
29
*
30
*Purpose:
31
* Control the error (output) sink by setting the value of __error_mode.
32
* Explicit controls are to direct output t o standard error (FILE * or
33
* C handle or NT HANDLE) or to use the MessageBox API. This routine is
34
* exposed and documented for the users.
35
*
36
*Entry:
37
* int modeval = _OUT_TO_DEFAULT, error sink is determined by __acrt_app_type
38
* _OUT_TO_STDERR, error sink is standard error
39
* _OUT_TO_MSGBOX, error sink is a message box
40
* _REPORT_ERRMODE, report the current __error_mode value
41
*
42
*Exit:
43
* Returns old setting or -1 if an error occurs.
44
*
45
*Exceptions:
46
*
47
*******************************************************************************/
48
49
int
__cdecl
_set_error_mode
(
int
const
new_error_mode)
50
{
51
switch
(new_error_mode)
52
{
53
case
_OUT_TO_DEFAULT
:
54
case
_OUT_TO_STDERR
:
55
case
_OUT_TO_MSGBOX
:
56
{
57
int
const
old_error_mode =
__acrt_error_mode
;
58
__acrt_error_mode
= new_error_mode;
59
return
old_error_mode;
60
}
61
62
case
_REPORT_ERRMODE
:
63
{
64
return
__acrt_error_mode
;
65
}
66
67
default
:
68
{
69
_VALIDATE_RETURN
((
"Invalid error_mode"
, 0),
EINVAL
, -1);
70
}
71
}
72
73
return
0;
74
}
75
76
77
78
}
// extern "C"
EINVAL
#define EINVAL
Definition:
acclib.h:90
__cdecl
#define __cdecl
Definition:
accygwin.h:79
corecrt_internal.h
_VALIDATE_RETURN
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
Definition:
corecrt_internal_strtox.h:38
_REPORT_ERRMODE
#define _REPORT_ERRMODE
Definition:
stdlib.h:113
_OUT_TO_MSGBOX
#define _OUT_TO_MSGBOX
Definition:
stdlib.h:112
_OUT_TO_DEFAULT
#define _OUT_TO_DEFAULT
Definition:
stdlib.h:110
_OUT_TO_STDERR
#define _OUT_TO_STDERR
Definition:
stdlib.h:111
_set_error_mode
int __cdecl _set_error_mode(int const new_error_mode)
Definition:
set_error_mode.cpp:49
__acrt_error_mode
static int __acrt_error_mode
Definition:
set_error_mode.cpp:25
sdk
lib
ucrt
misc
set_error_mode.cpp
Generated on Thu Apr 3 2025 06:14:58 for ReactOS by
1.9.6