Mercurial > might-and-magic-trilogy
comparison Log.h @ 0:8b8875f5b359
Initial commit
author | Nomad |
---|---|
date | Fri, 05 Oct 2012 16:07:14 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8b8875f5b359 |
---|---|
1 #pragma once | |
2 | |
3 | |
4 #define LOG_DECOMPILATION_WARNING() Log::Warning(L"%S [%S:%u]", __FUNCTION__, __FILE__, __LINE__); | |
5 | |
6 class Log | |
7 { | |
8 public: | |
9 static void Initialize(); | |
10 static void Warning(const wchar_t *pFormat, ...); | |
11 }; |