diff options
author | Vitaly Novichkov <Wohlstand@users.noreply.github.com> | 2018-07-31 04:01:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 04:01:11 +0300 |
commit | e76c56784fb072b9866aee816ad240127909da16 (patch) | |
tree | 3eee2c73c979e0dde7a87a72a9ad77bae5e2f00d /include/adlmidi.h | |
parent | af214cc7ebf2eed2788cea58cb658285adfe528b (diff) | |
parent | e098e4285af6d565d7b603279ec6e9770ce88436 (diff) | |
download | libADLMIDI-e76c56784fb072b9866aee816ad240127909da16.tar.gz libADLMIDI-e76c56784fb072b9866aee816ad240127909da16.tar.bz2 libADLMIDI-e76c56784fb072b9866aee816ad240127909da16.zip |
Merge pull request #148 from jpcima/fix-warnings
fix some warnings
Diffstat (limited to 'include/adlmidi.h')
-rw-r--r-- | include/adlmidi.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h index f687757..35afe94 100644 --- a/include/adlmidi.h +++ b/include/adlmidi.h @@ -125,7 +125,7 @@ enum ADLMIDI_SampleType /*! unsigned PCM 32-bit */ ADLMIDI_SampleType_U32, /*! Count of available sample format types */ - ADLMIDI_SampleType_Count, + ADLMIDI_SampleType_Count }; /** @@ -220,7 +220,7 @@ enum ADL_BankAccessFlags /*! create bank, allocating memory as needed */ ADLMIDI_Bank_Create = 1, /*! create bank, never allocating memory */ - ADLMIDI_Bank_CreateRt = 1|2, + ADLMIDI_Bank_CreateRt = 1|2 }; typedef struct ADL_Instrument ADL_Instrument; @@ -672,7 +672,7 @@ enum ADLMIDI_TrackOptions /*! Disabled track */ ADLMIDI_TrackOption_Off = 2, /*! Solo track */ - ADLMIDI_TrackOption_Solo = 3, + ADLMIDI_TrackOption_Solo = 3 }; /** @@ -1073,7 +1073,7 @@ extern ADLMIDI_DECLSPEC int adl_describeChannels(struct ADL_MIDIPlayer *device, */ enum { - ADLMIDI_InstrumentVersion = 0, + ADLMIDI_InstrumentVersion = 0 }; /** @@ -1094,7 +1094,7 @@ typedef enum ADL_InstrumentFlags ADLMIDI_Ins_RhythmModeMask = 0x38, /*! Mask of the flags range */ - ADLMIDI_Ins_ALL_MASK = 0x07, + ADLMIDI_Ins_ALL_MASK = 0x07 } ADL_InstrumentFlags; /** |