3 #include "gdipp_lib/debug.h"
5 void __cdecl
_fassert(_In_z_
const wchar_t * _Message
, _In_z_
const wchar_t *_File
, _In_
unsigned _Line
)
7 std::wostringstream assert_msg
;
8 assert_msg
<< _Message
;
11 assert_msg
<< L
" line ";
14 gdipp::debug_string(assert_msg
.str().c_str());