ReactOS
0.4.16-dev-1146-gc477928
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
vfwprintf.c
Go to the documentation of this file.
1
/*
2
* COPYRIGHT: GNU GPL, see COPYING in the top level directory
3
* PROJECT: ReactOS crt library
4
* FILE: lib/sdk/crt/printf/vfwprintf.c
5
* PURPOSE: Implementation of vfwprintf
6
* PROGRAMMER: Timo Kreuzer
7
*/
8
9
#include <stdio.h>
10
#include <stdarg.h>
11
12
int
__cdecl
wstreamout
(
FILE
*
stream
,
const
wchar_t
*
format
,
va_list
argptr);
13
14
int
15
__cdecl
16
vfwprintf
(
FILE
*
file
,
const
wchar_t
*
format
,
va_list
argptr)
17
{
18
int
ret
;
19
20
_lock_file
(
file
);
21
ret
=
wstreamout
(
file
,
format
, argptr);
22
_unlock_file
(
file
);
23
24
return
ret
;
25
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
va_list
char * va_list
Definition:
acmsvcex.h:78
_unlock_file
_CRTIMP void __cdecl _unlock_file(_Inout_ FILE *_File)
_lock_file
_CRTIMP void __cdecl _lock_file(_Inout_ FILE *_File)
_iobuf
Definition:
mbstring.h:19
file
Definition:
fci.c:127
format
Definition:
format.c:58
stream
Definition:
parse.h:23
vfwprintf
int __cdecl vfwprintf(FILE *file, const wchar_t *format, va_list argptr)
Definition:
vfwprintf.c:16
wstreamout
int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr)
ret
int ret
Definition:
wcstombs-tests.c:31
sdk
lib
crt
printf
vfwprintf.c
Generated on Mon May 19 2025 06:14:14 for ReactOS by
1.9.6