| version 1.7, 2003/12/08 00:55:34 | version 1.9, 2004/01/08 16:29:56 | 
| Line 9 | Line 9 | 
 |  |  | 
 |  |  | 
 | #ifndef __GNUC__ | #ifndef __GNUC__ | 
| typedef signed char             SINT8; | typedef signed char                     SINT8; | 
| typedef unsigned char   UINT8; | typedef unsigned char           UINT8; | 
| typedef signed short    SINT16; | typedef signed short            SINT16; | 
| typedef unsigned short  UINT16; | typedef unsigned short          UINT16; | 
| typedef signed int              SINT32; | typedef signed int                      SINT32; | 
| typedef unsigned int    UINT32; | typedef unsigned int            UINT32; | 
|  | typedef signed __int64          SINT64; | 
|  | typedef unsigned __int64        UINT64; | 
|  | #define INLINE                          __inline | 
 | #else | #else | 
 | #include        <stdlib.h> | #include        <stdlib.h> | 
| typedef signed char             SINT8; | typedef signed char                     SINT8; | 
| typedef unsigned char   UINT8; | typedef unsigned char           UINT8; | 
| typedef short                   SINT16; | typedef short                           SINT16; | 
| typedef unsigned short  UINT16; | typedef unsigned short          UINT16; | 
| typedef int                             SINT32; | typedef int                                     SINT32; | 
|  | typedef signed __int64          SINT64; | 
|  | #define INLINE                          inline | 
 | #endif | #endif | 
 |  |  | 
 | // for RISC test | // for RISC test | 
| Line 65  typedef int    SINT32; | Line 70  typedef int    SINT32; | 
 |  |  | 
 | #define SOUNDRESERVE    20 | #define SOUNDRESERVE    20 | 
 |  |  | 
 |  | #define SUPPORT_WAVEMIX | 
 |  |  | 
 | #define FASTCALL        __fastcall | #define FASTCALL        __fastcall | 
 |  |  |