ReactOS
0.4.16-dev-927-g467dec4
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
debug_fill_threshold.cpp
Go to the documentation of this file.
1
//
2
// debug_fill_threshold.cpp
3
//
4
// Copyright (c) Microsoft Corporation. All rights reserved.
5
//
6
// Functions to control the debug fill threshold used by the secure string
7
// functions. A threshold of 0 disables filling; a threshold of SIZE_MAX
8
// means to always fill to the maximum.
9
//
10
#include <
corecrt_internal.h
>
11
#include <stdint.h>
12
13
14
15
static
size_t
__acrt_debug_fill_threshold
=
SIZE_MAX
;
16
17
18
19
extern
"C"
size_t
__cdecl
_CrtSetDebugFillThreshold
(
size_t
const
new_threshold)
20
{
21
size_t
const
old_threshold{
__acrt_debug_fill_threshold
};
22
__acrt_debug_fill_threshold
= new_threshold;
23
return
old_threshold;
24
}
25
26
extern
"C"
size_t
__cdecl
_CrtGetDebugFillThreshold
()
27
{
28
return
__acrt_debug_fill_threshold
;
29
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
corecrt_internal.h
_CrtSetDebugFillThreshold
#define _CrtSetDebugFillThreshold(t)
Definition:
crtdbg.h:259
__acrt_debug_fill_threshold
static size_t __acrt_debug_fill_threshold
Definition:
debug_fill_threshold.cpp:15
_CrtGetDebugFillThreshold
size_t __cdecl _CrtGetDebugFillThreshold()
Definition:
debug_fill_threshold.cpp:26
SIZE_MAX
#define SIZE_MAX
Definition:
compat.h:66
sdk
lib
ucrt
misc
debug_fill_threshold.cpp
Generated on Sun Mar 30 2025 06:14:51 for ReactOS by
1.9.6