diff options
author | Wohlstand <admin@wohlnet.ru> | 2017-11-07 01:12:01 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2017-11-07 01:12:01 +0300 |
commit | 22350acc1f699f70cbdac6b5facadd0d6ccc8a7f (patch) | |
tree | fe8f64c337d484f723af25c20fe1e0d264e39e5c /src/adlmidi_mus2mid.h | |
parent | c71f0d4dfe52a523b37416717299700e203f818d (diff) | |
download | libADLMIDI-22350acc1f699f70cbdac6b5facadd0d6ccc8a7f.tar.gz libADLMIDI-22350acc1f699f70cbdac6b5facadd0d6ccc8a7f.tar.bz2 libADLMIDI-22350acc1f699f70cbdac6b5facadd0d6ccc8a7f.zip |
New API, classic ADLMIDI, and CMake
- Attempt to support hardware OPL and add build of classic ADLMIDI into CMake
- Added new API functions
- Added C++ Extras are needed for classic ADLMIDI player
- Error string is no more static. Static variant is kept for initialization errors only.
Diffstat (limited to 'src/adlmidi_mus2mid.h')
-rw-r--r-- | src/adlmidi_mus2mid.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/adlmidi_mus2mid.h b/src/adlmidi_mus2mid.h index c56c359..cc41b87 100644 --- a/src/adlmidi_mus2mid.h +++ b/src/adlmidi_mus2mid.h @@ -24,6 +24,15 @@ #include <stdint.h> +#ifdef __DJGPP__ +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef signed short int16_t; +typedef unsigned short uint16_t; +typedef signed long int32_t; +typedef unsigned long uint32_t; +#endif + #ifdef __cplusplus extern "C" { |