mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-12 13:21:51 +00:00
87d46ddd11
## 1.5.0 2020-09-28 * Drum note length expanding is now supported in real-time mode (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for OPNA chip with Neko Project II Kai YM2602 emulator usage (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added VGM file dumper which allows to output OPN2 commands into VGM file. (A new MIDI to VGM tool is now created with basing on libOPNMIDI) * Fixed an incorrect work of CC-121 (See https://github.com/Wohlstand/libADLMIDI/issues/227 for details) * Internality has been refactored and improved
70 lines
1.6 KiB
C
70 lines
1.6 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 */
|
|
#if !defined(_WINDOWS_H) && defined(RSM_ENABLE)
|
|
# ifdef _MSC_VER
|
|
typedef signed __int64 INT64;
|
|
typedef unsigned __int64 UINT64;
|
|
# 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
|
|
#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__ */
|