vswprintf_s

INT64 __cdecl vswprintf_s(WCHAR *Dst, size_t SizeInWords, const WCHAR *Format, va_list ArgList){
  INT64 result; 
  if( !Dst || !SizeInWords || !Format )
    goto LABEL_6;
  result = swoutput_s((char *)Dst, SizeInWords, (unsigned __int16 *)Format, (int *)ArgList);
  if( (int)result >= 0 )
    return result;
  *Dst = 0;
  if( (_DWORD)result == -2 )
LABEL_6:
    xHalTimerWatchdogStop(0i64, 0i64);
  return 0xFFFFFFFFi64;
}

Referenced by:

swprintf_s