vgmstream/src/streamtypes.h

36 lines
569 B
C
Raw Normal View History

/*
* streamtypes.h - widely used type definitions
*/
#ifndef _STREAMTYPES_H
#define _STREAMTYPES_H
#ifdef _MSC_VER
2017-01-02 15:43:10 +01:00
#if (_MSC_VER >= 1600)
#include <stdint.h>
#else
#include <pstdint.h>
2017-01-02 15:43:10 +01:00
#endif /* (_MSC_VER >= 1600) */
2018-11-03 18:09:13 +01:00
#ifndef inline /* (_MSC_VER < 1900)? */
#define inline _inline
2018-11-03 18:09:13 +01:00
#endif
#define strcasecmp _stricmp
2017-01-02 15:43:10 +01:00
#define strncasecmp _strnicmp
2015-08-30 10:10:26 -05:00
#if (_MSC_VER < 1900)
#define snprintf _snprintf
2017-01-02 15:43:10 +01:00
#endif /* (_MSC_VER < 1900) */
#else
#include <stdint.h>
2017-01-02 15:43:10 +01:00
#endif /* _MSC_VER */
typedef int16_t sample; //TODO: deprecated, remove
typedef int16_t sample_t;
#endif