ReactOS
0.4.16-dev-833-g4bc97ad
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 Wed Mar 19 2025 06:14:02 for ReactOS by
1.9.6