aboutsummaryrefslogtreecommitdiffstats
path: root/code/libspeex/include/speex/speex_config_types.h
blob: f386a163a5415edf598b6984fdd6de0f5da04bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __SPEEX_TYPES_H__
#define __SPEEX_TYPES_H__

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

#endif