ReactOS 0.4.16-dev-2110-ge3521eb
_vscwprintf.c File Reference
#include <stdio.h>
#include <stdarg.h>
Include dependency graph for _vscwprintf.c:

Go to the source code of this file.

Functions

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

Function Documentation

◆ _vscwprintf()

int __cdecl _vscwprintf ( const wchar_t format,
va_list  argptr 
)

Definition at line 15 of file _vscwprintf.c.

18{
19 FILE nulfile;
20 nulfile._tmpfname = nulfile._ptr = nulfile._base = NULL;
21 nulfile._bufsiz = nulfile._charbuf = nulfile._cnt = 0;
22 nulfile._flag = _IOSTRG | _IOWRT;
23 return wstreamout(&nulfile, format, argptr);
24}
#define NULL
Definition: types.h:112
#define _IOWRT
Definition: stdio.h:16
#define _IOSTRG
Definition: stdio.h:20
int __cdecl wstreamout(FILE *stream, const wchar_t *format, va_list argptr)
char * _ptr
int _charbuf
char * _base
char * _tmpfname
int _bufsiz
Definition: format.c:58

Referenced by _scwprintf(), BestFit_Write(), call_varargs(), DisplayMessage(), DisplayMessageV(), and InfoMessageBox().

◆ wstreamout()

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

Referenced by _vscwprintf().