Go to the source code of this file.
◆ __acrt_OutputDebugStringA()
Definition at line 11 of file OutputDebugStringA.cpp.
14{
16 {
17 return;
18 }
20 if (text_size == 0)
21 {
22 return;
23 }
24
25 auto text_wide = (wchar_t*)_alloca(text_size * sizeof(wchar_t));
26 size_t converted;
27 if (
mbstowcs_s(&converted, text_wide, text_size,
text, text_size - 1) == 0)
28 {
30 }
31}
_ACRTIMP errno_t __cdecl mbstowcs_s(size_t *, wchar_t *, size_t, const char *, size_t)
_ACRTIMP size_t __cdecl strlen(const char *)
void WINAPI SHIM_OBJ_NAME() OutputDebugStringW(LPCWSTR lpOutputString)