Initial files
[oweals/minetest.git] / src / porting.h
1 /*
2 (c) 2010 Perttu Ahola <celeron55@gmail.com>
3 */
4
5 #ifndef PORTING_HEADER
6 #define PORTING_HEADER
7
8 #ifdef _WIN32
9         #define SWPRINTF_CHARSTRING L"%S"
10 #else
11         #define SWPRINTF_CHARSTRING L"%s"
12 #endif
13
14 #endif
15