blob: 3213ec9c0499edcbfef02c2ce5245878b8a9a52b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
(c) 2010 Perttu Ahola <celeron55@gmail.com>
*/
#ifndef PORTING_HEADER
#define PORTING_HEADER
#ifdef _WIN32
#define SWPRINTF_CHARSTRING L"%S"
#else
#define SWPRINTF_CHARSTRING L"%s"
#endif
#endif
|