summaryrefslogtreecommitdiff
path: root/src/libspeex/include/speex/speex_config_types.h
blob: bfad776761fc2ebfa0034a72f8b8eae4fd8c69d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __SPEEX_TYPES_H__
#define __SPEEX_TYPES_H__

#ifdef _MSC_VER
typedef __int16 spx_int16_t;
typedef __int32 spx_int32_t;
typedef unsigned __int16 spx_uint16_t;
typedef unsigned __int32 spx_uint32_t;
#else
#include <stdint.h>
typedef int16_t spx_int16_t;
typedef int32_t spx_int32_t;
typedef uint16_t spx_uint16_t;
typedef uint32_t spx_uint32_t;
#endif

#endif