r1362 - trunk/code/libspeex/include/speex
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Tue Jun 3 00:40:40 EDT 2008
Author: icculus
Date: 2008-06-03 00:40:40 -0400 (Tue, 03 Jun 2008)
New Revision: 1362
Modified:
trunk/code/libspeex/include/speex/speex_config_types.h
Log:
Patched to compile on non Mac platforms.
Modified: trunk/code/libspeex/include/speex/speex_config_types.h
===================================================================
--- trunk/code/libspeex/include/speex/speex_config_types.h 2008-06-03 02:32:52 UTC (rev 1361)
+++ trunk/code/libspeex/include/speex/speex_config_types.h 2008-06-03 04:40:40 UTC (rev 1362)
@@ -2,10 +2,14 @@
#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
More information about the quake3-commits
mailing list