Corrected modplug and monkeyaudio to build with non-gcc compilers.
Original commit message from CVS: Corrected modplug and monkeyaudio to build with non-gcc compilers.
This commit is contained in:
parent
ce19421a31
commit
15f1745a69
@ -3,6 +3,10 @@
|
|||||||
|
|
||||||
#include "IO.h"
|
#include "IO.h"
|
||||||
|
|
||||||
|
#ifndef __inline
|
||||||
|
#define __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
//#define BUILD_RANGE_TABLE
|
//#define BUILD_RANGE_TABLE
|
||||||
|
|
||||||
struct RANGE_CODER_STRUCT_COMPRESS
|
struct RANGE_CODER_STRUCT_COMPRESS
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
#include "RollBuffer.h"
|
#include "RollBuffer.h"
|
||||||
#define NN_WINDOW_ELEMENTS 512
|
#define NN_WINDOW_ELEMENTS 512
|
||||||
|
|
||||||
|
#ifndef __inline
|
||||||
|
#define __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __GNUC_IA32__
|
#ifdef __GNUC_IA32__
|
||||||
extern "C" {
|
extern "C" {
|
||||||
__inline void Adapt ( short* pM, const short* pAdapt, int nDirection, int nOrder );
|
__inline void Adapt ( short* pM, const short* pAdapt, int nDirection, int nOrder );
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
#ifndef APE_ROLLBUFFER_H
|
#ifndef APE_ROLLBUFFER_H
|
||||||
#define APE_ROLLBUFFER_H
|
#define APE_ROLLBUFFER_H
|
||||||
|
|
||||||
|
#ifndef __inline
|
||||||
|
#define __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
template <class TYPE> class CRollBuffer
|
template <class TYPE> class CRollBuffer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
#ifndef APE_SCALEFIRSTORDERFILER_H
|
#ifndef APE_SCALEFIRSTORDERFILER_H
|
||||||
#define APE_SCALEFIRSTORDERFILER_H
|
#define APE_SCALEFIRSTORDERFILER_H
|
||||||
|
|
||||||
|
#ifndef __inline
|
||||||
|
#define __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
template <int MULTIPLY, int SHIFT> class CScaledFirstOrderFilter
|
template <int MULTIPLY, int SHIFT> class CScaledFirstOrderFilter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
#ifndef APE_SMARTPTR_H
|
#ifndef APE_SMARTPTR_H
|
||||||
#define APE_SMARTPTR_H
|
#define APE_SMARTPTR_H
|
||||||
|
|
||||||
|
#ifndef __inline
|
||||||
|
#define __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
// disable the operator -> on UDT warning
|
// disable the operator -> on UDT warning
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
# pragma warning( push )
|
# pragma warning( push )
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
#include "UnBitArrayBase.h"
|
#include "UnBitArrayBase.h"
|
||||||
#include "BitArray.h"
|
#include "BitArray.h"
|
||||||
|
|
||||||
|
#ifndef __inline
|
||||||
|
#define __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
class IAPEDecompress;
|
class IAPEDecompress;
|
||||||
|
|
||||||
struct RANGE_CODER_STRUCT_DECOMPRESS
|
struct RANGE_CODER_STRUCT_DECOMPRESS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user