63 lines
1.3 KiB
C
63 lines
1.3 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 INT32 stream_sample_t;
|
|
|
|
#ifdef VGM_BIG_ENDIAN
|
|
#define BYTE_XOR_BE(x) (x)
|
|
#else
|
|
#define BYTE_XOR_BE(x) ((x) ^ 0x01)
|
|
#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__
|