2008-04-04 01:24:57 +00:00
|
|
|
/*
|
|
|
|
* streamtypes.h - widely used type definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _STREAMTYPES_H
|
|
|
|
#define _STREAMTYPES_H
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2019-10-20 23:51:06 +02:00
|
|
|
/* Common versions:
|
|
|
|
* - 1500: VS2008
|
|
|
|
* - 1600: VS2010
|
|
|
|
* - 1700: VS2012
|
|
|
|
* - 1800: VS2013
|
|
|
|
* - 1900: VS2015
|
|
|
|
* - 1920: VS2019 */
|
2017-01-02 15:43:10 +01:00
|
|
|
|
2015-08-12 18:08:40 -05:00
|
|
|
#if (_MSC_VER >= 1600)
|
2019-10-20 23:51:06 +02:00
|
|
|
|
2015-08-12 18:08:40 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
#else
|
2008-06-15 07:51:10 +00:00
|
|
|
#include <pstdint.h>
|
2019-10-20 23:51:06 +02:00
|
|
|
#endif
|
2017-01-02 15:43:10 +01:00
|
|
|
|
2020-11-16 01:39:17 +03:00
|
|
|
#if (_MSC_VER < 1800) && !defined(__cplusplus)
|
|
|
|
#define inline __inline
|
2018-11-03 18:09:13 +01:00
|
|
|
#endif
|
|
|
|
|
2008-04-04 01:24:57 +00:00
|
|
|
#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)
|
2008-04-04 01:24:57 +00:00
|
|
|
#define snprintf _snprintf
|
2019-10-20 23:51:06 +02:00
|
|
|
#endif
|
2017-01-02 15:43:10 +01:00
|
|
|
|
2008-04-04 01:24:57 +00:00
|
|
|
#else
|
|
|
|
#include <stdint.h>
|
2019-10-20 23:51:06 +02:00
|
|
|
|
2017-01-02 15:43:10 +01:00
|
|
|
#endif /* _MSC_VER */
|
2008-04-04 01:24:57 +00:00
|
|
|
|
2019-02-23 02:47:03 +01:00
|
|
|
typedef int16_t sample; //TODO: deprecated, remove
|
|
|
|
typedef int16_t sample_t;
|
2008-04-04 01:24:57 +00:00
|
|
|
|
|
|
|
#endif
|