mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-15 00:42:20 +00:00
65 lines
1.4 KiB
C
65 lines
1.4 KiB
C
#ifndef MAMEDEF_H_
|
|
#define MAMEDEF_H_
|
|
|
|
/* typedefs to use MAME's (U)INTxx types (copied from MAME\src\ods\odscomm.h) */
|
|
/* 8-bit values */
|
|
typedef unsigned char UINT8;
|
|
typedef signed char INT8;
|
|
|
|
/* 16-bit values */
|
|
typedef unsigned short UINT16;
|
|
typedef signed short INT16;
|
|
|
|
/* 32-bit values */
|
|
#ifndef _WINDOWS_H
|
|
typedef unsigned int UINT32;
|
|
typedef signed int INT32;
|
|
#endif
|
|
|
|
/* 64-bit values */
|
|
#ifndef _WINDOWS_H
|
|
#ifdef _MSC_VER
|
|
typedef signed __int64 INT64;
|
|
typedef unsigned __int64 UINT64;
|
|
#else
|
|
__extension__ typedef unsigned long long UINT64;
|
|
__extension__ typedef signed long long INT64;
|
|
#endif
|
|
#endif
|
|
|
|
/* offsets and addresses are 32-bit (for now...) */
|
|
typedef UINT32 offs_t;
|
|
|
|
/* stream_sample_t is used to represent a single sample in a sound stream */
|
|
typedef INT16 stream_sample_t;
|
|
|
|
#if defined(VGM_BIG_ENDIAN)
|
|
#define BYTE_XOR_BE(x) (x)
|
|
#elif defined(VGM_LITTLE_ENDIAN)
|
|
#define BYTE_XOR_BE(x) ((x) ^ 0x01)
|
|
#else
|
|
/* don't define BYTE_XOR_BE so that it throws an error when compiling */
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
//#define INLINE static __forceinline
|
|
#define INLINE static __inline
|
|
#elif defined(__GNUC__)
|
|
#define INLINE static __inline__
|
|
#else
|
|
#define INLINE static inline
|
|
#endif
|
|
|
|
#ifndef M_PI
|
|
#define M_PI 3.14159265358979323846
|
|
#endif
|
|
|
|
#ifdef _DEBUG
|
|
#define logerror printf
|
|
#else
|
|
#define logerror
|
|
#endif
|
|
|
|
typedef void (*SRATE_CALLBACK)(void*, UINT32);
|
|
|
|
#endif /* __MAMEDEF_H__ */
|