Mercurial > mm7
view stuff.h @ 2430:cb66a1082fcf
* ITrack, IMovie now properly propogate destructors
* VideoPlayer correctly deallocates memory after playing a movie
author | a.parshin |
---|---|
date | Wed, 23 Jul 2014 20:28:28 +0300 |
parents | 345b1ff000bb |
children |
line wrap: on
line source
#pragma once #include <windows.h> #include <stdio.h> inline void Assert(bool condition, const char *format, ...) { if (condition) return; va_list va; va_start(va, format); char msg[4096]; vsprintf(msg, format, va); MessageBoxA(nullptr, msg, "Assert", 0); va_end(va); __debugbreak(); } inline void Error(const char *format, ...) { va_list va; va_start(va, format); char msg[4096]; vsprintf(msg, format, va); MessageBoxA(nullptr, msg, "Error", 0); va_end(va); __debugbreak(); } inline void log(char *format, ...) { va_list va; va_start(va, format); char msg[256]; vsprintf(msg, format, va); va_end(va); DWORD w; WriteConsoleA(GetStdHandle(STD_OUTPUT_HANDLE), msg, strlen(msg), &w, 0); }