ReactOS 0.4.15-dev-7958-gcd0bb1a
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
12int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr);
13
14int
16vfwprintf(FILE* file, const wchar_t *format, va_list argptr)
17{
18 int ret;
19
21 ret = wstreamout(file, format, argptr);
23
24 return ret;
25}
#define __cdecl
Definition: accygwin.h:79
char * va_list
Definition: acmsvcex.h:78
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546
_CRTIMP void __cdecl _unlock_file(_Inout_ FILE *_File)
_CRTIMP void __cdecl _lock_file(_Inout_ FILE *_File)
Definition: fci.c:127
Definition: parse.h:23
int __cdecl vfwprintf(FILE *file, const wchar_t *format, va_list argptr)
Definition: vfwprintf.c:16
int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr)
int ret