2008-04-04 03:24:57 +02:00
|
|
|
/*
|
|
|
|
* streamtypes.h - widely used type definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _STREAMTYPES_H
|
|
|
|
#define _STREAMTYPES_H
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2017-01-02 15:43:10 +01:00
|
|
|
|
2015-08-13 01:08:40 +02:00
|
|
|
#if (_MSC_VER >= 1600)
|
|
|
|
#include <stdint.h>
|
|
|
|
#else
|
2008-06-15 09:51:10 +02:00
|
|
|
#include <pstdint.h>
|
2017-01-02 15:43:10 +01:00
|
|
|
#endif /* (_MSC_VER >= 1600) */
|
|
|
|
|
2008-04-04 03:24:57 +02:00
|
|
|
#define inline _inline
|
|
|
|
#define strcasecmp _stricmp
|
2017-01-02 15:43:10 +01:00
|
|
|
#define strncasecmp _strnicmp
|
|
|
|
|
2015-08-30 17:10:26 +02:00
|
|
|
#if (_MSC_VER < 1900)
|
2008-04-04 03:24:57 +02:00
|
|
|
#define snprintf _snprintf
|
2017-01-02 15:43:10 +01:00
|
|
|
#endif /* (_MSC_VER < 1900) */
|
|
|
|
|
2008-04-04 03:24:57 +02:00
|
|
|
#else
|
|
|
|
#include <stdint.h>
|
2017-01-02 15:43:10 +01:00
|
|
|
#endif /* _MSC_VER */
|
2008-04-04 03:24:57 +02:00
|
|
|
|
|
|
|
typedef int16_t sample;
|
|
|
|
|
|
|
|
#endif
|