diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-04 00:06:25 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-04 00:06:25 +0300 |
commit | 3d60c15ae32219a7b29ccfa8221279f52a55858e (patch) | |
tree | 2e77e5cb1b9d951696e2578866903bf463763516 /include/adlmidi.h | |
parent | 586a040555a5aac4d932887bf9eedc31d947a823 (diff) | |
download | libADLMIDI-3d60c15ae32219a7b29ccfa8221279f52a55858e.tar.gz libADLMIDI-3d60c15ae32219a7b29ccfa8221279f52a55858e.tar.bz2 libADLMIDI-3d60c15ae32219a7b29ccfa8221279f52a55858e.zip |
Remove "ADLMIDI_UNSTABLE_API" macro.
As it's dev version, and lets polish this API to release it in next time
Diffstat (limited to 'include/adlmidi.h')
-rw-r--r-- | include/adlmidi.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h index 153cc5d..bf146db 100644 --- a/include/adlmidi.h +++ b/include/adlmidi.h @@ -132,7 +132,6 @@ enum ADL_BankAccessFlags typedef struct ADL_Instrument ADL_Instrument; -#if defined(ADLMIDI_UNSTABLE_API) /* Preallocates a minimum number of bank slots. Returns the actual capacity. */ extern int adl_reserveBanks(struct ADL_MIDIPlayer *device, unsigned banks); /* Gets the bank designated by the identifier, optionally creating if it does not exist. */ @@ -151,7 +150,7 @@ extern int adl_getInstrument(struct ADL_MIDIPlayer *device, const ADL_Bank *bank extern int adl_setInstrument(struct ADL_MIDIPlayer *device, ADL_Bank *bank, unsigned index, const ADL_Instrument *ins); /* Loads the melodic or percussive part of the nth embedded bank. */ extern int adl_loadEmbeddedBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank, int num); -#endif /* defined(ADLMIDI_UNSTABLE_API) */ + /*Sets number of 4-operator channels between all chips. By default, it is automatically re-calculating every bank change. |