From 682d3b0b31d6d4dce0de1decf4bed93a35f7a3bc Mon Sep 17 00:00:00 2001 From: derselbst Date: Fri, 11 Aug 2017 12:03:00 +0200 Subject: [PATCH] fluid_synth_set_channel_type() was not exported properly --- .travis.yml | 2 +- fluidsynth/include/fluidsynth/synth.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index cebfe8c5..a6ec97d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -174,5 +174,5 @@ before_script: - mkdir build && cd build script: - - cmake "${CMAKE_FLAGS}" "-DCMAKE_BUILD_TYPE=RelWithDebInfo" .. + - cmake ${CMAKE_FLAGS} "-DCMAKE_BUILD_TYPE=RelWithDebInfo" .. - make -j4 diff --git a/fluidsynth/include/fluidsynth/synth.h b/fluidsynth/include/fluidsynth/synth.h index d54f0d5c..bee64d4c 100644 --- a/fluidsynth/include/fluidsynth/synth.h +++ b/fluidsynth/include/fluidsynth/synth.h @@ -108,7 +108,7 @@ enum fluid_midi_channel_type CHANNEL_TYPE_DRUM = 1 }; -int fluid_synth_set_channel_type(fluid_synth_t* synth, int chan, int type); +FLUIDSYNTH_API int fluid_synth_set_channel_type(fluid_synth_t* synth, int chan, int type); /* Low level access */