/* * $Id: misc.cpp 117 2008-03-03 11:20:05Z baconevi $ * * {License} */ #include "stdafx.h" #include "misc.h" #include #include #include #ifndef NDEBUG #include #include #pragma warning(disable:4996) #pragma unmanaged void ase_assert_abort (void) { ::abort (); } void ase_assert_printf (const ase_char_t* fmt, ...) { va_list ap; #ifdef _WIN32 int n; ase_char_t buf[1024]; #endif va_start (ap, fmt); n = _vsntprintf (buf, ASE_COUNTOF(buf), fmt, ap); if (n < 0) buf[ASE_COUNTOF(buf)-1] = ASE_T('\0'); //ase_vprintf (fmt, ap); ::MessageBox (NULL, buf, ASE_T("ASSERTION FAILURE"), MB_OK|MB_ICONERROR); va_end (ap); } #endif char* unicode_to_multibyte (const wchar_t* in, int inlen, int* outlen) { int n; n = WideCharToMultiByte (CP_UTF8, 0, in, inlen, NULL, 0, NULL, 0); char* ptr = (char*)::malloc (sizeof(char)*n); if (ptr == NULL) return NULL; *outlen = WideCharToMultiByte (CP_UTF8, 0, in, inlen, ptr, n, NULL, 0); return ptr; }