Basic FreeType renderer implementation.
[gdipp.git] / gdipp_server / fassert.cpp
blob42691483396c2deba9266396921fe9650aedf9df
1 #include "stdafx.h"
2 #include "fassert.h"
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;
9 assert_msg << L" at ";
10 assert_msg << _File;
11 assert_msg << L" line ";
12 assert_msg << _Line;
14 gdipp::debug_string(assert_msg.str().c_str());