aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVitaly Novichkov <admin@wohlnet.ru>2018-06-21 09:43:34 +0300
committerVitaly Novichkov <admin@wohlnet.ru>2018-06-21 09:43:34 +0300
commitebee7962d7a2691e38d585dac9b9c0e3d286364c (patch)
treef3413300f470ddde74beb58c2dcb6ae178cc0dd2 /include
parent0a93f3c6ca30a746c86c08922192f052864b46ed (diff)
downloadlibADLMIDI-ebee7962d7a2691e38d585dac9b9c0e3d286364c.tar.gz
libADLMIDI-ebee7962d7a2691e38d585dac9b9c0e3d286364c.tar.bz2
libADLMIDI-ebee7962d7a2691e38d585dac9b9c0e3d286364c.zip
SysEx: Use `size_t` for size values instead of `unsigned int`
Diffstat (limited to 'include')
-rw-r--r--include/adlmidi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h
index 028aea8..8bb0bf1 100644
--- a/include/adlmidi.h
+++ b/include/adlmidi.h
@@ -368,7 +368,7 @@ extern void adl_rt_bankChangeMSB(struct ADL_MIDIPlayer *device, ADL_UInt8 channe
extern void adl_rt_bankChange(struct ADL_MIDIPlayer *device, ADL_UInt8 channel, ADL_SInt16 bank);
/*Perform a system exclusive message*/
-extern int adl_rt_systemExclusive(struct ADL_MIDIPlayer *device, const ADL_UInt8 *msg, unsigned size);
+extern int adl_rt_systemExclusive(struct ADL_MIDIPlayer *device, const ADL_UInt8 *msg, size_t size);
/**Hooks**/