Define PRIu32 conversion macros for MSVC.

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@10173 4a71c877-e1ca-e34f-864e-861f7616d084
master
i-nod 2010-03-06 20:21:53 +00:00 committed by Git SVN Gateway
parent 9cfa838355
commit 382bfad14b
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@
# define UINT16_MAX (65535) # define UINT16_MAX (65535)
# define UINT32_MAX (4294967295U) # define UINT32_MAX (4294967295U)
#ifdef WZ_CC_MSVC #ifdef WZ_CC_MSVC
#define PRIu64 "I64u" # define PRIu32 "u"
# define PRIu64 "I64u"
#endif #endif
#endif // WZ_C99 #endif // WZ_C99