2020-01-02 16:52:30 +00:00
|
|
|
#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 */
|
2020-09-28 18:23:55 +00:00
|
|
|
#if !defined(_WINDOWS_H) && defined(RSM_ENABLE)
|
|
|
|
# ifdef _MSC_VER
|
2020-01-02 16:52:30 +00:00
|
|
|
typedef signed __int64 INT64;
|
|
|
|
typedef unsigned __int64 UINT64;
|
2020-09-28 18:23:55 +00:00
|
|
|
# else
|
|
|
|
# if (__WORDSIZE == 64) || defined(_WIN64)
|
|
|
|
typedef signed long int INT64;
|
|
|
|
typedef unsigned long int UINT64;
|
|
|
|
# else
|
|
|
|
__extension__ typedef signed long long int INT64;
|
|
|
|
__extension__ typedef unsigned long long int UINT64;
|
|
|
|
# endif
|
|
|
|
# endif
|
2020-01-02 16:52:30 +00:00
|
|
|
#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)
|
2020-09-28 18:23:55 +00:00
|
|
|
/* #define INLINE static __forceinline */
|
2020-01-02 16:52:30 +00:00
|
|
|
#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__ */
|