diff options
author | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-31 02:31:47 +0200 |
---|---|---|
committer | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-31 02:31:47 +0200 |
commit | e098e4285af6d565d7b603279ec6e9770ce88436 (patch) | |
tree | c3bb9838043fed8a682bf071d80c64c53f6150e3 /include | |
parent | 626354e6d686d20c43b4d9aa929b85840e6e1015 (diff) | |
download | libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.tar.gz libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.tar.bz2 libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.zip |
fix some warnings
Diffstat (limited to 'include')
-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; /** |