NTSTATUS __stdcall vswprintf_s(WCHAR *Dst, UINT64 SizeInWords, WCHAR *Format, CHAR *ArgList){
NTSTATUS result;
if( !Dst || !SizeInWords || !Format )
goto LABEL_6;
result = swoutput_s((char *)Dst, SizeInWords, Format, (int *)ArgList);
if( result >= 0 )
return result;
*Dst = 0;
if( result == -2 )
LABEL_6:
xHalTimerWatchdogStop(0i64, 0i64);
return -1;
}