ReactOS 0.4.15-dev-7934-g1dc8d80
vfwprintf.c File Reference
#include <stdio.h>
#include <stdarg.h>
Include dependency graph for vfwprintf.c:

Go to the source code of this file.

Functions

int __cdecl wstreamout (FILE *stream, const wchar_t *format, va_list argptr)
 
int __cdecl vfwprintf (FILE *file, const wchar_t *format, va_list argptr)
 

Function Documentation

◆ vfwprintf()

int __cdecl vfwprintf ( FILE file,
const wchar_t format,
va_list  argptr 
)

Definition at line 16 of file vfwprintf.c.

17{
18 int ret;
19
21 ret = wstreamout(file, format, argptr);
23
24 return ret;
25}
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
int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr)
int ret

◆ wstreamout()

int __cdecl wstreamout ( FILE stream,
const wchar_t format,
va_list  argptr 
)

Referenced by vfwprintf().