mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-15 11:07:40 +01:00
Use the real stdint.h in Visual Studio environments that include it
This commit is contained in:
parent
8ce5de5835
commit
87c50104b4
@ -7,7 +7,11 @@
|
||||
#define _STREAMTYPES_H
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if (_MSC_VER >= 1600)
|
||||
#include <stdint.h>
|
||||
#else
|
||||
#include <pstdint.h>
|
||||
#endif
|
||||
#define inline _inline
|
||||
#define strcasecmp _stricmp
|
||||
#define snprintf _snprintf
|
||||
|
Loading…
Reference in New Issue
Block a user