also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
8 lines
133 B
C
Vendored
8 lines
133 B
C
Vendored
#include <stdio.h>
|
|
#include <wchar.h>
|
|
|
|
int vwprintf(const wchar_t *restrict fmt, va_list ap)
|
|
{
|
|
return vfwprintf(stdout, fmt, ap);
|
|
}
|