-fix compilation issue on windows
This commit is contained in:
wagic.the.homebrew@gmail.com
2010-02-28 13:24:31 +00:00
parent db49a49a78
commit f627f92557

View File

@@ -1,8 +1,13 @@
#ifndef _DEBUG_H_
#define _DEBUG_H_
#if WIN32
#define snprintf sprintf_s
#endif
#if defined (WIN32) || defined (LINUX)
#define TESTSUITE 1
#else
#define OutputDebugString(val) {}
#endif