├── .gitattributes ├── .gitignore ├── .gitmodules ├── 3rdParty ├── Emu de MIDI │ ├── .gitignore │ ├── CEnvelope.cpp │ ├── CEnvelope.hpp │ ├── CMIDIMessage.cpp │ ├── CMIDIMessage.hpp │ ├── CMIDIModule.cpp │ ├── CMIDIModule.hpp │ ├── COpllDevice.cpp │ ├── COpllDevice.hpp │ ├── CPSGDrum.cpp │ ├── CPSGDrum.hpp │ ├── CSMF.cpp │ ├── CSMF.hpp │ ├── CSMFPlay.cpp │ ├── CSMFPlay.hpp │ ├── CSccDevice.cpp │ ├── CSccDevice.hpp │ ├── DsaCommon.hpp │ ├── Emu de MIDI.vcxproj │ ├── Emu de MIDI.vcxproj.filters │ ├── ISoundDevice.hpp │ ├── SccInst.h │ ├── SccWave.h │ ├── device │ │ ├── 2413tone.h │ │ ├── 2413tone.ill │ │ ├── 281btone.h │ │ ├── emu2149.c │ │ ├── emu2149.h │ │ ├── emu2212.c │ │ ├── emu2212.h │ │ ├── emu2413.c │ │ ├── emu2413.h │ │ ├── emutypes.h │ │ └── vrc7tone.h │ ├── emidi.vcproj │ ├── main.cpp │ └── readme.txt ├── FluidSynth │ ├── x64 │ │ └── include │ │ │ ├── fluidsynth.h │ │ │ └── fluidsynth │ │ │ ├── audio.h │ │ │ ├── event.h │ │ │ ├── gen.h │ │ │ ├── ladspa.h │ │ │ ├── log.h │ │ │ ├── midi.h │ │ │ ├── misc.h │ │ │ ├── mod.h │ │ │ ├── seq.h │ │ │ ├── seqbind.h │ │ │ ├── settings.h │ │ │ ├── sfont.h │ │ │ ├── shell.h │ │ │ ├── synth.h │ │ │ ├── types.h │ │ │ ├── version.h │ │ │ └── voice.h │ └── x86 │ │ └── include │ │ ├── fluidsynth.h │ │ └── fluidsynth │ │ ├── audio.h │ │ ├── event.h │ │ ├── gen.h │ │ ├── ladspa.h │ │ ├── log.h │ │ ├── midi.h │ │ ├── misc.h │ │ ├── mod.h │ │ ├── seq.h │ │ ├── seqbind.h │ │ ├── settings.h │ │ ├── sfont.h │ │ ├── shell.h │ │ ├── synth.h │ │ ├── types.h │ │ ├── version.h │ │ └── voice.h ├── Nuke │ ├── Nuke.vcxproj │ ├── Nuke.vcxproj.filters │ ├── fmopl3lib │ │ ├── opl3.c │ │ ├── opl3.h │ │ ├── opl3class.cpp │ │ └── opl3class.h │ ├── interface.h │ ├── resampler.c │ ├── resampler.h │ ├── synthlib_apogee │ │ ├── _al_midi.h │ │ ├── al_midi.cpp │ │ ├── al_midi.h │ │ └── inst │ │ │ ├── apogee_blood.h │ │ │ ├── apogee_duke3d.h │ │ │ ├── apogee_lee.h │ │ │ ├── apogee_nam.h │ │ │ └── apogee_sw.h │ ├── synthlib_doom │ │ ├── i_oplmusic.cpp │ │ ├── i_oplmusic.h │ │ └── inst │ │ │ ├── dmx_dmx.h │ │ │ ├── dmx_doom1.h │ │ │ ├── dmx_doom2.h │ │ │ ├── dmx_raptor.h │ │ │ ├── dmx_strife.h │ │ │ └── dmxopl.h │ └── synthlib_opl3w │ │ ├── gmtimbre.h │ │ ├── opl3midi.cpp │ │ ├── opl3midi.h │ │ └── opl3type.h ├── NukedSC-55 │ ├── .gitignore │ ├── .gitmodules │ ├── 3rdparty │ │ └── Utf8Main │ │ │ ├── utf8main.cmake │ │ │ ├── utf8main.h │ │ │ └── utf8main_win32.cpp │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ └── RtMidi.cmake │ ├── data │ │ └── back.data │ ├── mcu1.png │ ├── mcu2.png │ ├── pcm_tracing.jpg │ └── src │ │ ├── lcd.cpp │ │ ├── lcd.h │ │ ├── lcd_font.h │ │ ├── mcu.cpp │ │ ├── mcu.h │ │ ├── mcu_interrupt.cpp │ │ ├── mcu_interrupt.h │ │ ├── mcu_opcodes.cpp │ │ ├── mcu_opcodes.h │ │ ├── mcu_timer.cpp │ │ ├── mcu_timer.h │ │ ├── midi.h │ │ ├── midi_rtmidi.cpp │ │ ├── midi_win32.cpp │ │ ├── pcm.cpp │ │ ├── pcm.h │ │ ├── submcu.cpp │ │ ├── submcu.h │ │ └── utils │ │ ├── files.cpp │ │ └── files.h ├── bass │ ├── bass.chm │ ├── bass.dll │ ├── bass.txt │ ├── bass_mpc.dll │ ├── bassflac.chm │ ├── bassflac.dll │ ├── bassflac.txt │ ├── bassmidi.chm │ ├── bassmidi.dll │ ├── bassmidi.txt │ ├── bassopus.chm │ ├── bassopus.dll │ ├── bassopus.txt │ ├── basswv.chm │ ├── basswv.dll │ ├── basswv.txt │ ├── c │ │ ├── 3dtest │ │ │ ├── 3dtest.c │ │ │ ├── 3dtest.rc │ │ │ ├── 3dtest.vcxproj │ │ │ └── makefile │ │ ├── bass.h │ │ ├── bass.lib │ │ ├── bass.sln │ │ ├── bass_mpc.h │ │ ├── bass_mpc.lib │ │ ├── bassflac.h │ │ ├── bassflac.lib │ │ ├── bassmidi.h │ │ ├── bassmidi.lib │ │ ├── bassmidi.sln │ │ ├── bassopus.h │ │ ├── bassopus.lib │ │ ├── basstest │ │ │ ├── basstest.c │ │ │ ├── basstest.rc │ │ │ ├── basstest.vcxproj │ │ │ └── makefile │ │ ├── basswv.h │ │ ├── basswv.lib │ │ ├── contest │ │ │ ├── contest.c │ │ │ ├── contest.vcxproj │ │ │ └── makefile │ │ ├── custloop │ │ │ ├── custloop.c │ │ │ ├── custloop.vcxproj │ │ │ └── makefile │ │ ├── devlist │ │ │ ├── devlist.c │ │ │ ├── devlist.vcxproj │ │ │ └── makefile │ │ ├── dsptest │ │ │ ├── dsptest.c │ │ │ ├── dsptest.rc │ │ │ ├── dsptest.vcxproj │ │ │ └── makefile │ │ ├── fxtest │ │ │ ├── fxtest.c │ │ │ ├── fxtest.rc │ │ │ ├── fxtest.vcxproj │ │ │ └── makefile │ │ ├── livefx │ │ │ ├── livefx.c │ │ │ ├── livefx.rc │ │ │ ├── livefx.vcxproj │ │ │ └── makefile │ │ ├── livespec │ │ │ ├── livespec.c │ │ │ ├── livespec.vcxproj │ │ │ └── makefile │ │ ├── makefile │ │ ├── makefile.in │ │ ├── miditest │ │ │ ├── makefile │ │ │ ├── miditest.c │ │ │ ├── miditest.rc │ │ │ └── miditest.vcxproj │ │ ├── modtest │ │ │ ├── makefile │ │ │ ├── modtest.c │ │ │ ├── modtest.rc │ │ │ └── modtest.vcxproj │ │ ├── multi │ │ │ ├── makefile │ │ │ ├── multi.c │ │ │ ├── multi.rc │ │ │ └── multi.vcxproj │ │ ├── netradio │ │ │ ├── makefile │ │ │ ├── netradio.c │ │ │ ├── netradio.rc │ │ │ └── netradio.vcxproj │ │ ├── plugins │ │ │ ├── makefile │ │ │ ├── plugins.c │ │ │ ├── plugins.rc │ │ │ └── plugins.vcxproj │ │ ├── rectest │ │ │ ├── makefile │ │ │ ├── rectest.c │ │ │ ├── rectest.rc │ │ │ └── rectest.vcxproj │ │ ├── sf2pack │ │ │ ├── makefile │ │ │ ├── sf2pack.c │ │ │ └── sf2pack.vcxproj │ │ ├── speakers │ │ │ ├── makefile │ │ │ ├── speakers.c │ │ │ ├── speakers.rc │ │ │ └── speakers.vcxproj │ │ ├── spectrum │ │ │ ├── makefile │ │ │ ├── spectrum.c │ │ │ └── spectrum.vcxproj │ │ ├── synth │ │ │ ├── makefile │ │ │ ├── synth.c │ │ │ ├── synth.rc │ │ │ └── synth.vcxproj │ │ ├── writewav │ │ │ ├── makefile │ │ │ ├── writewav.c │ │ │ └── writewav.vcxproj │ │ └── x64 │ │ │ ├── bass.lib │ │ │ ├── bass_mpc.lib │ │ │ ├── bassflac.lib │ │ │ ├── bassmidi.lib │ │ │ ├── bassopus.lib │ │ │ └── basswv.lib │ ├── delphi │ │ ├── 3dTest │ │ │ ├── D3Test.dpr │ │ │ ├── DTMain.dfm │ │ │ └── DTMain.pas │ │ ├── BassTest │ │ │ ├── BTMain.dfm │ │ │ ├── BTMain.pas │ │ │ └── BassTest.dpr │ │ ├── ConTest │ │ │ └── ConTest.dpr │ │ ├── DspTest │ │ │ ├── DTMain.dfm │ │ │ ├── DTMain.pas │ │ │ └── DspTest.dpr │ │ ├── SampleVis │ │ │ ├── CommonTypes.pas │ │ │ ├── circle_vis.pas │ │ │ ├── main.dfm │ │ │ ├── main.pas │ │ │ ├── osc_vis.pas │ │ │ ├── samplevis.dpr │ │ │ └── spectrum_vis.pas │ │ ├── Speakers │ │ │ ├── Speakers.dpr │ │ │ ├── Unit1.dfm │ │ │ └── Unit1.pas │ │ ├── StreamTest │ │ │ ├── STMain.dfm │ │ │ ├── STMain.pas │ │ │ └── StreamTest.dpr │ │ ├── bass.bpg │ │ ├── bass.pas │ │ ├── bass_mpc.pas │ │ ├── bassflac.pas │ │ ├── bassmidi.pas │ │ ├── bassopus.pas │ │ ├── basswv.pas │ │ ├── custloop │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ └── custloop.dpr │ │ ├── devlist │ │ │ └── devlist.dpr │ │ ├── fxtest │ │ │ ├── FXtest.dpr │ │ │ ├── test.dfm │ │ │ └── test.pas │ │ ├── livefx │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ └── livefx.dpr │ │ ├── livespec │ │ │ └── livespec.dpr │ │ ├── miditest │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ └── miditest.dpr │ │ ├── modtest │ │ │ ├── modtest.dpr │ │ │ └── modtest.rc │ │ ├── multi │ │ │ ├── Multi.dpr │ │ │ └── multi.rc │ │ ├── netradio │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ └── netradio.dpr │ │ ├── plugins │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ └── plugins.dpr │ │ ├── rectest │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ └── rectest.dpr │ │ ├── spectrum │ │ │ ├── COMMON.INC │ │ │ ├── Unit1.pas │ │ │ └── spectrum.dpr │ │ ├── synth │ │ │ ├── Main.dfm │ │ │ ├── Main.pas │ │ │ └── synth.dpr │ │ └── writewav │ │ │ ├── UnitMain.dfm │ │ │ ├── UnitMain.pas │ │ │ └── writewav.dpr │ ├── miditest.exe │ ├── readme.txt │ ├── vb │ │ ├── 3Dtest │ │ │ └── frm3Dtest.frm │ │ ├── BASStest │ │ │ └── frmBassTest.frm │ │ ├── Bass.bas │ │ ├── CustLoop │ │ │ ├── frmCustLoop.frm │ │ │ └── modCustLoop.bas │ │ ├── DSPtest │ │ │ ├── frmDSPtest.frm │ │ │ └── modDSPtest.bas │ │ ├── FXtest │ │ │ ├── frmFXtest.frm │ │ │ └── mFxTest.bas │ │ ├── LiveFX │ │ │ ├── frmLiveFX.frm │ │ │ └── modLiveFX.bas │ │ ├── LiveSpec │ │ │ ├── frmLiveSpec.frm │ │ │ └── modLiveSpec.bas │ │ ├── Memory │ │ │ ├── SYNCtest.bas │ │ │ ├── cbass_time.cls │ │ │ └── frmMemory.frm │ │ ├── Multi │ │ │ ├── frmDevice.frm │ │ │ ├── frmMulti.frm │ │ │ └── modMulti.bas │ │ ├── NetRadio │ │ │ ├── clsFileIo.cls │ │ │ ├── frmNetRadio.frm │ │ │ ├── mNetradio.bas │ │ │ └── modNetRadio.bas │ │ ├── Plugins │ │ │ └── frmPlugins.frm │ │ ├── RecTest │ │ │ ├── frmRecTest.frm │ │ │ └── modRecTest.bas │ │ ├── Speakers │ │ │ └── frmSpeakers.frm │ │ ├── Spectrum │ │ │ ├── frmSpectrum.frm │ │ │ └── modSpectrum.bas │ │ ├── Synth │ │ │ ├── frmSynth.frm │ │ │ └── modSynth.bas │ │ ├── WriteWav │ │ │ └── frmWriteWave.frm │ │ ├── bass_mpc.bas │ │ ├── bassflac.bas │ │ ├── bassmidi.bas │ │ ├── bassopus.bas │ │ ├── basswv.bas │ │ ├── devlist │ │ │ └── devlist.bas │ │ ├── miditest │ │ │ ├── frmMidiTest.frm │ │ │ └── modMidiTest.bas │ │ └── modtest │ │ │ └── frmModTest.frm │ └── x64 │ │ ├── bass.dll │ │ ├── bass_mpc.dll │ │ ├── bassflac.dll │ │ ├── bassmidi.dll │ │ ├── bassopus.dll │ │ └── basswv.dll ├── libADLMIDI │ ├── .appveyor.yml │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── LICENSE │ ├── LICENSE.GPL-3.txt │ ├── LICENSE.LGPL-2.1.txt │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── Android.mk │ │ ├── CMakeLists.txt │ │ └── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ ├── banks.ini │ ├── bitbucket-pipelines.yml │ ├── cmake │ │ ├── FindLIBVLC.cmake │ │ ├── djgpp │ │ │ ├── djgpp-cmake-core.sh │ │ │ ├── djgpp-cmake.sh │ │ │ └── toolchain-djgpp.cmake │ │ ├── mingw-dlls.cmake │ │ ├── openwattcom-dos │ │ │ ├── custom-h │ │ │ │ ├── mymap.h │ │ │ │ └── myset.h │ │ │ ├── ow-cmake.sh │ │ │ └── toolchain-ow.cmake │ │ ├── openwattcom │ │ │ ├── Linux-OpenWatcom-C.cmake │ │ │ ├── Linux-OpenWatcom-CXX.cmake │ │ │ ├── Linux-OpenWatcom.cmake │ │ │ ├── ow-cmake.sh │ │ │ └── toolchain-ow.cmake │ │ └── win-ci │ │ │ ├── lib-sdk.cmd │ │ │ ├── vlc-plugin.cmd │ │ │ └── winmm-drivers.cmd │ ├── examples │ │ ├── python-alsa │ │ │ ├── ReadMe.txt │ │ │ └── playmidi.py │ │ ├── python-pyaudio │ │ │ └── playmidi.py │ │ └── sdl2_audio │ │ │ ├── CMakeLists.txt │ │ │ └── sdl2_sample.c │ ├── fm_banks │ │ ├── adldata-cache.dat │ │ ├── ail │ │ │ ├── AdvancedCivilization.opl │ │ │ ├── BubbleBobble.opl │ │ │ ├── DeathGate.opl │ │ │ ├── Discworld.opl │ │ │ ├── FIFAInternationalSoccer.opl │ │ │ ├── Guilty.opl │ │ │ ├── LittleBigAdventure.opl │ │ │ ├── NationalHockeyLeaguePA.opl │ │ │ ├── Putt-Putt-2.ad │ │ │ ├── Putt-Putt-2.opl │ │ │ ├── StarshipInvasion.opl │ │ │ ├── SuperStreetFighter2.opl │ │ │ ├── Syndicate.opl │ │ │ ├── SyndicateWars.opl │ │ │ ├── SystemShock.opl │ │ │ ├── TerraNovaStrikeForceCenturi.opl │ │ │ ├── ThemeHospital.opl │ │ │ ├── UltimateSoccerManager.opl │ │ │ ├── dupes │ │ │ │ └── SimonTheSorcerer2.AD │ │ │ ├── master_of_magic.wopl │ │ │ ├── master_of_magic_orchestral.opl │ │ │ ├── master_of_magic_standard.opl │ │ │ ├── miss-inst │ │ │ │ ├── BardsTaleConstruction.opl │ │ │ │ ├── Caesar2.opl │ │ │ │ ├── HighSeasTrader.opl │ │ │ │ ├── LordsOfTheRealm.opl │ │ │ │ └── WhenTwoWorldsWar.opl │ │ │ ├── nemesis.opl │ │ │ ├── non-gm │ │ │ │ ├── AirBucks.ad │ │ │ │ ├── BattleChess4000-2.opl │ │ │ │ ├── BattleChess4000-dupe.opl │ │ │ │ ├── BattleChess4000.opl │ │ │ │ ├── InteritTheEarth.opl │ │ │ │ ├── InteritTheEarth2.opl │ │ │ │ ├── JaggedAlliance.opl │ │ │ │ ├── KasparovGambit.opl │ │ │ │ ├── MagicCarpet2.opl │ │ │ │ ├── ReturnToZork.opl │ │ │ │ ├── UltimaUnderworld2.opl │ │ │ │ ├── WreckinCrew.opl │ │ │ │ ├── lost-vikings.opl │ │ │ │ └── warcraft1.opl │ │ │ ├── simfarm.ad │ │ │ ├── simfarm.opl │ │ │ ├── star_control_3.opl │ │ │ └── warcraft2.ad │ │ ├── bnk_files │ │ │ ├── grassman1.bnk │ │ │ ├── grassman2.bnk │ │ │ ├── master_of_magic.bnk │ │ │ └── themepark.tmb │ │ ├── dmx │ │ │ ├── DMXOPL-by-sneakernets-old.op2 │ │ │ ├── doom1.op2 │ │ │ ├── doom2.op2 │ │ │ ├── heretic.op2 │ │ │ ├── raptor.op2 │ │ │ └── strife.op2 │ │ ├── hmi │ │ │ ├── 3d_Table_Sports │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ │ ├── Aces_of_the_Deep │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ │ ├── Anvil_of_Dawn │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ │ ├── Descent │ │ │ │ ├── drum.bnk │ │ │ │ ├── hamdrum.bnk │ │ │ │ ├── hammelo.bnk │ │ │ │ ├── intdrum.bnk │ │ │ │ ├── intmelo.bnk │ │ │ │ ├── melodic.bnk │ │ │ │ ├── rickdrum.bnk │ │ │ │ └── rickmelo.bnk │ │ │ ├── Descent_2 │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ │ ├── Earthsiege │ │ │ │ ├── drum-old.bnk │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ │ ├── Normality │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ │ ├── Shattered_Steel │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ │ └── Theme_Park │ │ │ │ ├── drum.bnk │ │ │ │ └── melodic.bnk │ │ ├── ibk_files │ │ │ ├── Inst │ │ │ │ ├── $GMOPL.IBK │ │ │ │ ├── 0.SBI │ │ │ │ ├── 1gmopl.ibk │ │ │ │ ├── CHRMPERC.IBK │ │ │ │ ├── DOOM-1.IBK │ │ │ │ ├── DOOM-2.IBK │ │ │ │ ├── DOOM.IBK │ │ │ │ ├── DOOM2.IBK │ │ │ │ ├── DRUM.IBK │ │ │ │ ├── DRUM2.IBK │ │ │ │ ├── DRUM3.IBK │ │ │ │ ├── DRUM4.IBK │ │ │ │ ├── DRUMOPL.IBK │ │ │ │ ├── DRUMS.IBK │ │ │ │ ├── GENMIDI.IBK │ │ │ │ ├── GM.IBK │ │ │ │ ├── GMOPL1.IBK │ │ │ │ ├── MAUIFM.IBK │ │ │ │ ├── MAUIPERC.IBK │ │ │ │ ├── MT32.IBK │ │ │ │ ├── NVD.IBK │ │ │ │ ├── PERCUSSV.IBK │ │ │ │ ├── TIMBRE.IBK │ │ │ │ └── gmopl.ibk │ │ │ ├── JOconnel-DRUM.IBK │ │ │ ├── JOconnel.IBK │ │ │ ├── fmsymth_internal_drum.ibk │ │ │ ├── fmsymth_internal_melodic.ibk │ │ │ ├── game.ibk │ │ │ ├── gmopl_wohl_mod-drums.ibk │ │ │ ├── gmopl_wohl_mod.ibk │ │ │ ├── ibk │ │ │ │ ├── BASS.IBK │ │ │ │ ├── BRASS.IBK │ │ │ │ ├── CHRMPERC.IBK │ │ │ │ ├── DRUM.IBK │ │ │ │ ├── ENSEMBLE.IBK │ │ │ │ ├── FMTIMBRE.IBK │ │ │ │ ├── GENMIDI.IBK │ │ │ │ ├── GM.IBK │ │ │ │ ├── GMOPL.IBK │ │ │ │ ├── GMOPL2.IBK │ │ │ │ ├── GUITAR.IBK │ │ │ │ ├── HARP.IBK │ │ │ │ ├── IBK.H │ │ │ │ ├── MAUIFM.IBK │ │ │ │ ├── MAUIPERC.IBK │ │ │ │ ├── MELODY.IBK │ │ │ │ ├── MT32.IBK │ │ │ │ ├── ORGAN.IBK │ │ │ │ ├── PERCUSSV.IBK │ │ │ │ ├── PIANO.IBK │ │ │ │ ├── PIPE.IBK │ │ │ │ ├── README.TXT │ │ │ │ ├── REED.IBK │ │ │ │ ├── SYNLEAD.IBK │ │ │ │ ├── SYNLEAD2.IBK │ │ │ │ ├── SYNLEAD3.IBK │ │ │ │ ├── SYNPAD.IBK │ │ │ │ ├── TIMBRE.IBK │ │ │ │ └── VIOLIN.IBK │ │ │ ├── mt_fm.ibk │ │ │ ├── nitemare_3d.ibk │ │ │ ├── soccer-genmidi.ibk │ │ │ └── soccer-percs.ibk │ │ ├── junglevision │ │ │ ├── 2x2.op3 │ │ │ ├── 2x2.opl │ │ │ ├── fat2.op3 │ │ │ ├── fat2_modded.op3 │ │ │ ├── fat4-fixed.opl │ │ │ ├── fat4-fixed.wopl │ │ │ ├── fat4.op3 │ │ │ ├── fat4_old.op3 │ │ │ ├── fat4_probe.op3 │ │ │ ├── gmoconel.tmb │ │ │ ├── gmopl_wohl_mod.tmb │ │ │ ├── jv_2op.op3 │ │ │ ├── wallace.op3 │ │ │ └── wallace.tmb │ │ ├── misc_files │ │ │ ├── bisqwit.adlraw │ │ │ └── cartooners-adlib-decrypted.dat │ │ ├── tmb_files │ │ │ ├── apogee_duke3d99.tmb │ │ │ ├── apogee_xenophage.tmb │ │ │ ├── bloodtmb.tmb │ │ │ ├── buildtmb.c │ │ │ ├── d3dtimbr.tmb │ │ │ ├── default.tmb │ │ │ ├── nam.tmb │ │ │ ├── rott.tmb │ │ │ └── swtimbr.tmb │ │ ├── wopl_files │ │ │ ├── Apogee-IMF-90.wopl │ │ │ ├── DMXOPL3-by-sneakernets-GS.wopl │ │ │ ├── GM-By-J.A.Nguyen-and-Wohlstand.wopl │ │ │ ├── Wohlstand's-modded-FatMan.wopl │ │ │ ├── lostvik.wopl │ │ │ └── msadlib.wopl │ │ ├── ymf262.odt │ │ └── ymf262.pdf │ ├── include │ │ └── adlmidi.h │ ├── libADLMIDI.pc.in │ ├── projects │ │ └── watcom │ │ │ ├── .gitignore │ │ │ ├── ADLMIDI-linux32.tgt │ │ │ ├── ADLMIDI-win32.tgt │ │ │ ├── ADLMIDI.tgt │ │ │ ├── bass.mid │ │ │ ├── dmxopl3.wop │ │ │ ├── libADLMIDI-linux32.wpj │ │ │ ├── libADLMIDI-win32.wpj │ │ │ ├── libADLMIDI.tgt │ │ │ ├── libADLMIDI.wpj │ │ │ ├── nin-hlah.mid │ │ │ ├── onestop.mid │ │ │ ├── playmidi-debug-crashful.zip │ │ │ ├── playmidi-linux32.tgt │ │ │ ├── playmidi-win32.tgt │ │ │ ├── playmidi.tgt │ │ │ ├── pmidid32.tgt │ │ │ └── ttd10.mid │ ├── src │ │ ├── adlmidi.cpp │ │ ├── adlmidi_bankmap.h │ │ ├── adlmidi_bankmap.tcc │ │ ├── adlmidi_cvt.hpp │ │ ├── adlmidi_db.h │ │ ├── adlmidi_load.cpp │ │ ├── adlmidi_midiplay.cpp │ │ ├── adlmidi_midiplay.hpp │ │ ├── adlmidi_opl3.cpp │ │ ├── adlmidi_opl3.hpp │ │ ├── adlmidi_private.cpp │ │ ├── adlmidi_private.hpp │ │ ├── adlmidi_ptr.hpp │ │ ├── adlmidi_sequencer.cpp │ │ ├── chips │ │ │ ├── common │ │ │ │ ├── mutex.hpp │ │ │ │ └── ptr.hpp │ │ │ ├── dosbox │ │ │ │ ├── dbopl.cpp │ │ │ │ └── dbopl.h │ │ │ ├── dosbox_opl3.cpp │ │ │ ├── dosbox_opl3.h │ │ │ ├── java │ │ │ │ └── JavaOPL3.hpp │ │ │ ├── java_opl3.cpp │ │ │ ├── java_opl3.h │ │ │ ├── nuked │ │ │ │ ├── nukedopl3.c │ │ │ │ ├── nukedopl3.h │ │ │ │ ├── nukedopl3_174.c │ │ │ │ └── nukedopl3_174.h │ │ │ ├── nuked_opl3.cpp │ │ │ ├── nuked_opl3.h │ │ │ ├── nuked_opl3_v174.cpp │ │ │ ├── nuked_opl3_v174.h │ │ │ ├── opal │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.old │ │ │ │ ├── opal-pan.diff │ │ │ │ └── opal.hpp │ │ │ ├── opal_opl3.cpp │ │ │ ├── opal_opl3.h │ │ │ ├── opl_chip_base.h │ │ │ └── opl_chip_base.tcc │ │ ├── cvt_mus2mid.hpp │ │ ├── cvt_xmi2mid.hpp │ │ ├── file_reader.hpp │ │ ├── fraction.hpp │ │ ├── inst_db.cpp │ │ ├── midi_sequencer.h │ │ ├── midi_sequencer.hpp │ │ ├── midi_sequencer_impl.hpp │ │ ├── oplinst.h │ │ ├── structures │ │ │ ├── pl_list.hpp │ │ │ └── pl_list.tcc │ │ └── wopl │ │ │ ├── wopl_file.c │ │ │ └── wopl_file.h │ ├── test.wopl │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bankmap │ │ │ ├── CMakeLists.txt │ │ │ └── bank_map.cpp │ │ ├── common │ │ │ ├── catch.hpp │ │ │ └── catch_main.cpp │ │ ├── conversion │ │ │ ├── CMakeLists.txt │ │ │ └── conversion.cpp │ │ └── wopl-file │ │ │ ├── CMakeLists.txt │ │ │ └── wopl_file.cpp │ ├── utils │ │ ├── adlmidi-2 │ │ │ ├── 6x9.hpp │ │ │ ├── 8x16.hpp │ │ │ ├── 9x15.hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake │ │ │ │ ├── check-termio.c │ │ │ │ └── check-termios.c │ │ │ ├── input.cc │ │ │ ├── input.hpp │ │ │ ├── midiplay.cc │ │ │ ├── puzzlegame.cc │ │ │ └── puzzlegame.hpp │ │ ├── dumpbank │ │ │ ├── CMakeLists.txt │ │ │ └── dumpbank.cpp │ │ ├── dumpmiles │ │ │ ├── CMakeLists.txt │ │ │ └── dumpmiles.cpp │ │ ├── gen_adldata │ │ │ ├── CMakeLists.txt │ │ │ ├── file_formats │ │ │ │ ├── common.h │ │ │ │ ├── load_ail.h │ │ │ │ ├── load_bisqwit.h │ │ │ │ ├── load_bnk.h │ │ │ │ ├── load_bnk2.h │ │ │ │ ├── load_ea.h │ │ │ │ ├── load_ibk.h │ │ │ │ ├── load_jv.h │ │ │ │ ├── load_op2.h │ │ │ │ ├── load_tmb.h │ │ │ │ └── load_wopl.h │ │ │ ├── gen_adldata.cc │ │ │ ├── ini │ │ │ │ ├── IniProcessor.pri │ │ │ │ ├── ini_processing.cpp │ │ │ │ ├── ini_processing.h │ │ │ │ └── ini_processing_variant.h │ │ │ ├── measurer.cpp │ │ │ ├── measurer.h │ │ │ ├── midi_inst_list.h │ │ │ ├── progs_cache.cpp │ │ │ ├── progs_cache.h │ │ │ └── scrapped.txt │ │ ├── midiplay │ │ │ ├── CMakeLists.txt │ │ │ ├── adlmidiplay.cpp │ │ │ ├── audio.h │ │ │ ├── audio_sdl.c │ │ │ ├── audio_winmm.c │ │ │ ├── wave_writer.c │ │ │ └── wave_writer.h │ │ ├── mus2mid │ │ │ ├── CMakeLists.txt │ │ │ └── mus2mid.cpp │ │ ├── test │ │ │ ├── adldatatest.cc │ │ │ └── test.cc │ │ ├── update-copyright.sh │ │ ├── vlc_codec │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ └── libadlmidi.c │ │ ├── winmm_drv │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ │ ├── regconfig.c │ │ │ │ └── regconfig.h │ │ │ ├── cpl │ │ │ │ ├── adlconfig-tool.c │ │ │ │ ├── adlconfig.c │ │ │ │ ├── adlconfig.def │ │ │ │ ├── adlconfig.manifest │ │ │ │ ├── adlconfig.rc │ │ │ │ ├── config_dialog.c │ │ │ │ ├── config_dialog.h │ │ │ │ ├── opl3icon.ico │ │ │ │ ├── res-cpl.rc │ │ │ │ ├── res-tool.rc │ │ │ │ ├── resource.h │ │ │ │ └── targetver.h │ │ │ ├── installer │ │ │ │ ├── drvinst.c │ │ │ │ ├── drvinst.exe.manifest │ │ │ │ ├── drvinst.rc │ │ │ │ ├── install.bat │ │ │ │ └── uninstall.bat │ │ │ ├── src │ │ │ │ ├── MidiSynth.cpp │ │ │ │ ├── MidiSynth.h │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ ├── winmm_drv.cpp │ │ │ │ └── winmm_drv.def │ │ │ └── test │ │ │ │ └── test.c │ │ └── xmi2mid │ │ │ ├── CMakeLists.txt │ │ │ └── xmi2mid.cpp │ └── windows │ │ ├── framework.h │ │ ├── libadlmidi.vcxproj │ │ └── libadlmidi.vcxproj.filters ├── libOPNMIDI │ ├── .appveyor.yml │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── FindLIBVLC.cmake │ ├── LICENSE │ ├── LICENSE.GPL-3.txt │ ├── LICENSE.LGPL-2.1.txt │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── Android.mk │ │ └── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ ├── cmake │ │ ├── FindLIBVLC.cmake │ │ ├── libSDL2.cmake │ │ └── win-ci │ │ │ ├── lib-sdk.cmd │ │ │ ├── vlc-plugin.cmd │ │ │ └── winmm-drivers.cmd │ ├── docs │ │ └── wopn specification.txt │ ├── examples │ │ ├── python-alsa │ │ │ ├── ReadMe.txt │ │ │ └── playmidi.py │ │ ├── python-pyaudio │ │ │ └── playmidi.py │ │ └── sdl2_audio │ │ │ ├── CMakeLists.txt │ │ │ └── sdl2_sample.c │ ├── fm_banks │ │ ├── LINKS.txt │ │ ├── Tomsoft-readme.txt │ │ ├── Tomsoft.wopn │ │ ├── fmmidi-readme.txt │ │ ├── fmmidi.wopn │ │ ├── gems-fmlib-gmize-readme.txt │ │ ├── gems-fmlib-gmize.wopn │ │ ├── gm-old.wopn │ │ ├── gm.wopn │ │ ├── gs-by-papiezak-and-sneakernets-readme.txt │ │ ├── gs-by-papiezak-and-sneakernets.wopn │ │ ├── readme.txt │ │ └── xg.wopn │ ├── include │ │ └── opnmidi.h │ ├── libOPNMIDI-test.pro │ ├── libOPNMIDI.pc.in │ ├── libOPNMIDI.pro │ ├── src │ │ ├── chips │ │ │ ├── gens │ │ │ │ ├── Ym2612.cpp │ │ │ │ ├── Ym2612.hpp │ │ │ │ └── Ym2612_p.hpp │ │ │ ├── gens_opn2.cpp │ │ │ ├── gens_opn2.h │ │ │ ├── gx │ │ │ │ ├── gx_ym2612.c │ │ │ │ └── gx_ym2612.h │ │ │ ├── gx_opn2.cpp │ │ │ ├── gx_opn2.h │ │ │ ├── mame │ │ │ │ ├── mame_ym2612fm.c │ │ │ │ ├── mame_ym2612fm.h │ │ │ │ └── mamedef.h │ │ │ ├── mame_opn2.cpp │ │ │ ├── mame_opn2.h │ │ │ ├── mame_opna.cpp │ │ │ ├── mame_opna.h │ │ │ ├── mamefm │ │ │ │ ├── 2608intf.h │ │ │ │ ├── emu.h │ │ │ │ ├── emu2149.c │ │ │ │ ├── emu2149.h │ │ │ │ ├── emutypes.h │ │ │ │ ├── fm.cpp │ │ │ │ ├── fm.h │ │ │ │ ├── fmopn_2608rom.h │ │ │ │ ├── resampler.cpp │ │ │ │ ├── resampler.hpp │ │ │ │ ├── ymdeltat.cpp │ │ │ │ └── ymdeltat.h │ │ │ ├── np2 │ │ │ │ ├── LICENSE │ │ │ │ ├── compiler.h │ │ │ │ ├── fmgen_changelog_opnmidi.txt │ │ │ │ ├── fmgen_diag.h │ │ │ │ ├── fmgen_file.cpp │ │ │ │ ├── fmgen_file.h │ │ │ │ ├── fmgen_fmgen.cpp │ │ │ │ ├── fmgen_fmgen.h │ │ │ │ ├── fmgen_fmgeninl.h │ │ │ │ ├── fmgen_fmtimer.cpp │ │ │ │ ├── fmgen_fmtimer.h │ │ │ │ ├── fmgen_headers.h │ │ │ │ ├── fmgen_misc.h │ │ │ │ ├── fmgen_opna.cpp │ │ │ │ ├── fmgen_opna.h │ │ │ │ ├── fmgen_psg.cpp │ │ │ │ ├── fmgen_psg.h │ │ │ │ ├── fmgen_readme.txt │ │ │ │ ├── fmgen_readme_kai.txt │ │ │ │ └── fmgen_types.h │ │ │ ├── np2_opna.cpp │ │ │ ├── np2_opna.h │ │ │ ├── nuked │ │ │ │ ├── ym3438.c │ │ │ │ └── ym3438.h │ │ │ ├── nuked_opn2.cpp │ │ │ ├── nuked_opn2.h │ │ │ ├── opn_chip_base.h │ │ │ ├── opn_chip_base.tcc │ │ │ ├── opn_chip_family.h │ │ │ ├── pmdwin │ │ │ │ ├── LICENSE │ │ │ │ ├── op.h │ │ │ │ ├── opna.c │ │ │ │ ├── opna.h │ │ │ │ ├── psg.c │ │ │ │ ├── psg.h │ │ │ │ ├── rhythmdata.c │ │ │ │ └── rhythmdata.h │ │ │ ├── pmdwin_opna.cpp │ │ │ ├── pmdwin_opna.h │ │ │ ├── vgm_file_dumper.cpp │ │ │ └── vgm_file_dumper.h │ │ ├── cvt_mus2mid.hpp │ │ ├── cvt_xmi2mid.hpp │ │ ├── file_reader.hpp │ │ ├── fraction.hpp │ │ ├── midi_sequencer.h │ │ ├── midi_sequencer.hpp │ │ ├── midi_sequencer_impl.hpp │ │ ├── opnbank.h │ │ ├── opnmidi.cpp │ │ ├── opnmidi_bankmap.h │ │ ├── opnmidi_bankmap.tcc │ │ ├── opnmidi_cvt.hpp │ │ ├── opnmidi_load.cpp │ │ ├── opnmidi_midiplay.cpp │ │ ├── opnmidi_midiplay.hpp │ │ ├── opnmidi_opn2.cpp │ │ ├── opnmidi_opn2.hpp │ │ ├── opnmidi_private.cpp │ │ ├── opnmidi_private.hpp │ │ ├── opnmidi_ptr.hpp │ │ ├── opnmidi_sequencer.cpp │ │ ├── structures │ │ │ ├── pl_list.hpp │ │ │ └── pl_list.tcc │ │ └── wopn │ │ │ ├── wopn_file.c │ │ │ └── wopn_file.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── activenotes │ │ │ ├── CMakeLists.txt │ │ │ └── active_notes.cpp │ │ ├── channel-users │ │ │ ├── CMakeLists.txt │ │ │ └── channel_users.cpp │ │ ├── common │ │ │ ├── catch.hpp │ │ │ └── catch_main.cpp │ │ └── wopn-file │ │ │ ├── CMakeLists.txt │ │ │ └── wopn_file.cpp │ ├── utils │ │ ├── ZLib │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── README │ │ │ ├── ZLib.2013.vcxproj │ │ │ ├── ZLib.2013.vcxproj.filters │ │ │ ├── ZLib.2017.vcxproj │ │ │ ├── ZLib.2017.vcxproj.filters │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zconf.h.in │ │ │ ├── zlib.3 │ │ │ ├── zlib.cmake │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── dac_test │ │ │ ├── CMakeLists.txt │ │ │ └── dac_test.cpp │ │ ├── fmmidi_prog │ │ │ ├── 002 [GYB] fmmidi.wopn │ │ │ ├── fmmidi.wopn │ │ │ ├── make.sh │ │ │ ├── midiprogram.h │ │ │ ├── program2wopn.c │ │ │ └── wopn │ │ │ │ ├── wopn_file.c │ │ │ │ └── wopn_file.h │ │ ├── midi2vgm │ │ │ ├── CMakeLists.txt │ │ │ ├── compact │ │ │ │ ├── LICENSE │ │ │ │ ├── VGMFile.h │ │ │ │ ├── chip_cmp.cpp │ │ │ │ ├── common.h │ │ │ │ ├── vgm_cmp.cpp │ │ │ │ ├── vgm_cmp.h │ │ │ │ ├── vgm_lib.h │ │ │ │ └── vgm_stdtype.h │ │ │ └── midi2vgm.cpp │ │ ├── midiplay │ │ │ ├── CMakeLists.txt │ │ │ ├── audio.h │ │ │ ├── audio_sdl.c │ │ │ ├── audio_winmm.c │ │ │ ├── opnplay.cpp │ │ │ ├── wave_writer.c │ │ │ └── wave_writer.h │ │ ├── test │ │ │ ├── adldatatest.cc │ │ │ └── test.cc │ │ ├── update-copyright.sh │ │ ├── vlc_codec │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── gm_opn_bank.h │ │ │ └── libopnmidi.c │ │ ├── winmm_drv │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ │ ├── regconfig.c │ │ │ │ └── regconfig.h │ │ │ ├── cpl │ │ │ │ ├── config_dialog.c │ │ │ │ ├── config_dialog.h │ │ │ │ ├── opn2icon.ico │ │ │ │ ├── opnconfig-tool.c │ │ │ │ ├── opnconfig.c │ │ │ │ ├── opnconfig.def │ │ │ │ ├── opnconfig.manifest │ │ │ │ ├── opnconfig.rc │ │ │ │ ├── res-cpl.rc │ │ │ │ ├── res-tool.rc │ │ │ │ ├── resource.h │ │ │ │ └── targetver.h │ │ │ ├── installer │ │ │ │ ├── drvinst.c │ │ │ │ ├── drvinst.exe.manifest │ │ │ │ ├── drvinst.rc │ │ │ │ ├── install.bat │ │ │ │ └── uninstall.bat │ │ │ ├── src │ │ │ │ ├── MidiSynth.cpp │ │ │ │ ├── MidiSynth.h │ │ │ │ ├── gm_opn_bank.h │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ ├── winmm_drv.cpp │ │ │ │ └── winmm_drv.def │ │ │ └── test │ │ │ │ └── test.c │ │ └── wopn2hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── wopn2hpp.c │ │ │ └── wopn2hpp.sh │ └── windows │ │ ├── framework.h │ │ ├── libopnmidi.vcxproj │ │ ├── libopnmidi.vcxproj.filters │ │ └── unistd.h ├── libjson │ ├── json-builder.c │ ├── json-builder.h │ ├── json.c │ ├── json.h │ ├── libjson.vcxproj │ └── libjson.vcxproj.filters ├── libsflist │ ├── libsflist.vcxproj │ ├── libsflist.vcxproj.filters │ ├── sflist.c │ └── sflist.h ├── munt │ ├── .gitignore │ ├── CMakeLists.txt │ ├── DOSBox-mt32-patch │ │ ├── README.md │ │ ├── dosbox-0.74-3-mt32-patch.diff │ │ └── dosbox-SVN-r4479-mt32-patch.diff │ ├── FreeBSD │ │ ├── README.md │ │ ├── make_ports.cmake │ │ ├── mt32emu │ │ │ └── Makefile.in │ │ ├── mt32emu_qt │ │ │ └── Makefile.in │ │ └── mt32emu_smf2wav │ │ │ └── Makefile.in │ ├── README.md │ ├── cmake │ │ ├── FindMT32EMU.cmake │ │ ├── build_snapshots.cmake │ │ └── project_data.cmake │ ├── mt32emu │ │ ├── AUTHORS.txt │ │ ├── CMakeLists.txt │ │ ├── COPYING.LESSER.txt │ │ ├── COPYING.txt │ │ ├── NEWS.txt │ │ ├── README.md │ │ ├── TODO.txt │ │ ├── cmake │ │ │ ├── CheckDependencies.cmake │ │ │ ├── FindSOXR.cmake │ │ │ ├── FindSampleRate.cmake │ │ │ ├── MT32EmuConfig.cmake.in │ │ │ ├── build_version_map.cmake │ │ │ └── project_data.cmake │ │ ├── info.txt │ │ ├── mt32emu.vcxproj │ │ ├── mt32emu.vcxproj.filters │ │ ├── mt32emu_msvc7.vcxproj │ │ └── src │ │ │ ├── Analog.cpp │ │ │ ├── Analog.h │ │ │ ├── BReverbModel.cpp │ │ │ ├── BReverbModel.h │ │ │ ├── Display.cpp │ │ │ ├── Display.h │ │ │ ├── Enumerations.h │ │ │ ├── File.cpp │ │ │ ├── File.h │ │ │ ├── FileStream.cpp │ │ │ ├── FileStream.h │ │ │ ├── LA32FloatWaveGenerator.cpp │ │ │ ├── LA32FloatWaveGenerator.h │ │ │ ├── LA32Ramp.cpp │ │ │ ├── LA32Ramp.h │ │ │ ├── LA32WaveGenerator.cpp │ │ │ ├── LA32WaveGenerator.h │ │ │ ├── MemoryRegion.h │ │ │ ├── MidiEventQueue.h │ │ │ ├── MidiStreamParser.cpp │ │ │ ├── MidiStreamParser.h │ │ │ ├── Part.cpp │ │ │ ├── Part.h │ │ │ ├── Partial.cpp │ │ │ ├── Partial.h │ │ │ ├── PartialManager.cpp │ │ │ ├── PartialManager.h │ │ │ ├── Poly.cpp │ │ │ ├── Poly.h │ │ │ ├── ROMInfo.cpp │ │ │ ├── ROMInfo.h │ │ │ ├── SampleRateConverter.cpp │ │ │ ├── SampleRateConverter.h │ │ │ ├── Structures.h │ │ │ ├── Synth.cpp │ │ │ ├── Synth.h │ │ │ ├── TVA.cpp │ │ │ ├── TVA.h │ │ │ ├── TVF.cpp │ │ │ ├── TVF.h │ │ │ ├── TVP.cpp │ │ │ ├── TVP.h │ │ │ ├── Tables.cpp │ │ │ ├── Tables.h │ │ │ ├── Types.h │ │ │ ├── VersionTagging.cpp │ │ │ ├── VersionTagging.h │ │ │ ├── c_interface │ │ │ ├── c_interface.cpp │ │ │ ├── c_interface.h │ │ │ ├── c_types.h │ │ │ └── cpp_interface.h │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── globals.h │ │ │ ├── internals.h │ │ │ ├── mmath.h │ │ │ ├── mt32emu.h │ │ │ ├── mt32emu.pc.in │ │ │ ├── sha1 │ │ │ ├── sha1.cpp │ │ │ └── sha1.h │ │ │ └── srchelper │ │ │ ├── InternalResampler.cpp │ │ │ ├── InternalResampler.h │ │ │ ├── SamplerateAdapter.cpp │ │ │ ├── SamplerateAdapter.h │ │ │ ├── SoxrAdapter.cpp │ │ │ ├── SoxrAdapter.h │ │ │ └── srctools │ │ │ ├── include │ │ │ ├── FIRResampler.h │ │ │ ├── FloatSampleProvider.h │ │ │ ├── IIR2xResampler.h │ │ │ ├── LinearResampler.h │ │ │ ├── ResamplerModel.h │ │ │ ├── ResamplerStage.h │ │ │ └── SincResampler.h │ │ │ └── src │ │ │ ├── FIRResampler.cpp │ │ │ ├── IIR2xResampler.cpp │ │ │ ├── LinearResampler.cpp │ │ │ ├── ResamplerModel.cpp │ │ │ └── SincResampler.cpp │ ├── mt32emu_alsadrv │ │ ├── .gitignore │ │ ├── AUTHORS.txt │ │ ├── COPYING.LESSER.txt │ │ ├── COPYING.txt │ │ ├── Makefile │ │ ├── README.txt │ │ └── src │ │ │ ├── alsadrv.cpp │ │ │ ├── alsadrv.h │ │ │ ├── console.cpp │ │ │ ├── drvreport.h │ │ │ ├── img │ │ │ ├── button.xpm │ │ │ ├── logo.xpm │ │ │ └── stripe.xpm │ │ │ ├── keypad.cpp │ │ │ ├── keypad.h │ │ │ ├── lcd.cpp │ │ │ ├── lcd.h │ │ │ ├── maps.h │ │ │ ├── pixmaps.cpp │ │ │ ├── wav.cpp │ │ │ ├── widgets.h │ │ │ └── xmt32.cpp │ ├── mt32emu_qt │ │ ├── AUTHORS.txt │ │ ├── CMakeLists.txt │ │ ├── COPYING.txt │ │ ├── NEWS.txt │ │ ├── README.md │ │ ├── TODO.txt │ │ ├── cmake │ │ │ ├── FindJACK.cmake │ │ │ ├── FindPORTAUDIO.cmake │ │ │ ├── FindPulseAudio.cmake │ │ │ ├── FindQtMobility.cmake │ │ │ └── project_data.cmake │ │ ├── info.txt │ │ ├── res │ │ │ ├── icons │ │ │ │ ├── 128x128 │ │ │ │ │ └── munt.png │ │ │ │ ├── 16x16 │ │ │ │ │ └── munt.png │ │ │ │ ├── 24x24 │ │ │ │ │ └── munt.png │ │ │ │ ├── 256x256 │ │ │ │ │ └── munt.png │ │ │ │ ├── 32x32 │ │ │ │ │ └── munt.png │ │ │ │ ├── 48x48 │ │ │ │ │ └── munt.png │ │ │ │ ├── 64x64 │ │ │ │ │ └── munt.png │ │ │ │ ├── 72x72 │ │ │ │ │ └── munt.png │ │ │ │ └── 96x96 │ │ │ │ │ └── munt.png │ │ │ └── mt32emu-qt.desktop │ │ └── src │ │ │ ├── AudioFileWriter.cpp │ │ │ ├── AudioFileWriter.h │ │ │ ├── AudioPropertiesDialog.cpp │ │ │ ├── AudioPropertiesDialog.h │ │ │ ├── AudioPropertiesDialog.ui │ │ │ ├── DemoPlayer.cpp │ │ │ ├── DemoPlayer.h │ │ │ ├── FloatingDisplay.cpp │ │ │ ├── FloatingDisplay.h │ │ │ ├── JACKClient.cpp │ │ │ ├── JACKClient.h │ │ │ ├── MainWindow.cpp │ │ │ ├── MainWindow.h │ │ │ ├── MainWindow.ui │ │ │ ├── Master.cpp │ │ │ ├── Master.h │ │ │ ├── MasterClock.cpp │ │ │ ├── MasterClock.h │ │ │ ├── MidiConverterDialog.cpp │ │ │ ├── MidiConverterDialog.h │ │ │ ├── MidiConverterDialog.ui │ │ │ ├── MidiEventLayout.h │ │ │ ├── MidiParser.cpp │ │ │ ├── MidiParser.h │ │ │ ├── MidiPlayerDialog.cpp │ │ │ ├── MidiPlayerDialog.h │ │ │ ├── MidiPlayerDialog.ui │ │ │ ├── MidiPropertiesDialog.cpp │ │ │ ├── MidiPropertiesDialog.h │ │ │ ├── MidiPropertiesDialog.ui │ │ │ ├── MidiRecorder.cpp │ │ │ ├── MidiRecorder.h │ │ │ ├── MidiSession.cpp │ │ │ ├── MidiSession.h │ │ │ ├── QAtomicHelper.h │ │ │ ├── QMidiBuffer.cpp │ │ │ ├── QMidiBuffer.h │ │ │ ├── QMidiEvent.cpp │ │ │ ├── QMidiEvent.h │ │ │ ├── QRingBuffer.cpp │ │ │ ├── QRingBuffer.h │ │ │ ├── QSynth.cpp │ │ │ ├── QSynth.h │ │ │ ├── ROMSelectionDialog.cpp │ │ │ ├── ROMSelectionDialog.h │ │ │ ├── ROMSelectionDialog.ui │ │ │ ├── RealtimeLocker.h │ │ │ ├── RealtimeReadLocker.h │ │ │ ├── SynthPropertiesDialog.cpp │ │ │ ├── SynthPropertiesDialog.h │ │ │ ├── SynthPropertiesDialog.ui │ │ │ ├── SynthRoute.cpp │ │ │ ├── SynthRoute.h │ │ │ ├── SynthStateMonitor.cpp │ │ │ ├── SynthStateMonitor.h │ │ │ ├── SynthWidget.cpp │ │ │ ├── SynthWidget.h │ │ │ ├── SynthWidget.ui │ │ │ ├── audiodrv │ │ │ ├── AlsaAudioDriver.cpp │ │ │ ├── AlsaAudioDriver.h │ │ │ ├── AudioDriver.cpp │ │ │ ├── AudioDriver.h │ │ │ ├── AudioFileWriterDriver.cpp │ │ │ ├── AudioFileWriterDriver.h │ │ │ ├── CoreAudioDriver.cpp │ │ │ ├── CoreAudioDriver.h │ │ │ ├── JACKAudioDriver.cpp │ │ │ ├── JACKAudioDriver.h │ │ │ ├── OSSAudioDriver.cpp │ │ │ ├── OSSAudioDriver.h │ │ │ ├── PortAudioDriver.cpp │ │ │ ├── PortAudioDriver.h │ │ │ ├── PulseAudioDriver.cpp │ │ │ ├── PulseAudioDriver.h │ │ │ ├── QtAudioDriver.cpp │ │ │ ├── QtAudioDriver.h │ │ │ ├── WinMMAudioDriver.cpp │ │ │ └── WinMMAudioDriver.h │ │ │ ├── font_6x8.h │ │ │ ├── images.qrc │ │ │ ├── images │ │ │ ├── Details.gif │ │ │ ├── DetailsHide.gif │ │ │ ├── Icon.gif │ │ │ ├── LCDOff.gif │ │ │ ├── LCDOn.gif │ │ │ └── Refresh.gif │ │ │ ├── main.cpp │ │ │ └── mididrv │ │ │ ├── ALSADriver.cpp │ │ │ ├── ALSADriver.h │ │ │ ├── CoreMidiDriver.cpp │ │ │ ├── CoreMidiDriver.h │ │ │ ├── JACKMidiDriver.cpp │ │ │ ├── JACKMidiDriver.h │ │ │ ├── MidiDriver.cpp │ │ │ ├── MidiDriver.h │ │ │ ├── OSSMidiPortDriver.cpp │ │ │ ├── OSSMidiPortDriver.h │ │ │ ├── SMFDriver.cpp │ │ │ ├── SMFDriver.h │ │ │ ├── TestDriver.cpp │ │ │ ├── TestDriver.h │ │ │ ├── Win32Driver.cpp │ │ │ └── Win32Driver.h │ ├── mt32emu_smf2wav │ │ ├── AUTHORS.txt │ │ ├── CMakeLists.txt │ │ ├── COPYING.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── FindGLIB2.cmake │ │ │ └── project_data.cmake │ │ ├── info.txt │ │ ├── libsmf │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── NEWS │ │ │ ├── TODO │ │ │ └── src │ │ │ │ ├── config.h.in │ │ │ │ ├── smf.c │ │ │ │ ├── smf.h │ │ │ │ ├── smf_decode.c │ │ │ │ ├── smf_load.c │ │ │ │ ├── smf_private.h │ │ │ │ ├── smf_save.c │ │ │ │ └── smf_tempo.c │ │ └── src │ │ │ └── mt32emu-smf2wav.cpp │ ├── mt32emu_win32drv │ │ ├── CMakeLists.txt │ │ ├── COPYING.LESSER.txt │ │ ├── COPYING.txt │ │ ├── NEWS.txt │ │ ├── README.md │ │ ├── cmake │ │ │ └── project_data.cmake │ │ ├── mt32emu.inf.in │ │ └── src │ │ │ ├── MidiSynth.cpp │ │ │ ├── MidiSynth.h │ │ │ ├── stdafx.h │ │ │ ├── targetver.h │ │ │ ├── winmm_drv.cpp │ │ │ └── winmm_drv.def │ └── mt32emu_win32drv_setup │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── drvsetup │ │ ├── CMakeLists.txt │ │ ├── drvsetup.cpp │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ └── infinstall │ │ ├── CMakeLists.txt │ │ ├── infinstall.cpp │ │ ├── pki_helper.cpp │ │ ├── pki_helper.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── sdl2 │ ├── BUGS.txt │ ├── COPYING.txt │ ├── README-SDL.txt │ ├── README.txt │ ├── WhatsNew.txt │ ├── cmake │ │ ├── sdl2-config-version.cmake │ │ └── sdl2-config.cmake │ ├── docs │ │ ├── CONTRIBUTING.md │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gdk.md │ │ ├── README-gesture.md │ │ ├── README-git.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-kmsbsd.md │ │ ├── README-linux.md │ │ ├── README-macos.md │ │ ├── README-n3ds.md │ │ ├── README-nacl.md │ │ ├── README-ngage.md │ │ ├── README-os2.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-ps2.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-riscos.md │ │ ├── README-touch.md │ │ ├── README-versions.md │ │ ├── README-visualc.md │ │ ├── README-vita.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ ├── doxyfile │ │ └── release_checklist.md │ └── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_guid.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hidapi.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h └── vstsdk │ ├── artwork │ ├── VSTLogoAlpha.png │ ├── VSTLogoBlack.jpg │ ├── VSTLogoWhite.jpg │ └── VST_Logo_Usage_Guideline.pdf │ ├── doc │ ├── VST Licensing Agreement.rtf │ ├── gfx │ │ ├── folder.gif │ │ ├── mac.gif │ │ ├── vstpluglogo_small.jpg │ │ └── win.gif │ ├── html │ │ ├── Blocksizechange.gif │ │ ├── ControlChanged.gif │ │ ├── IOchange.gif │ │ ├── Initialisation.gif │ │ ├── Offlineprocessing.gif │ │ ├── Sampleratechange.gif │ │ ├── SpeakerarrangementnegotiationforVSTfx.gif │ │ ├── Termination.gif │ │ ├── TurnOff.gif │ │ ├── TurnOn.gif │ │ ├── aeffect_8h.html │ │ ├── aeffectx_8h.html │ │ ├── aeffeditor_8h.html │ │ ├── annotated.html │ │ ├── audioeffect_8cpp.html │ │ ├── audioeffect_8h.html │ │ ├── audioeffectx_8cpp.html │ │ ├── audioeffectx_8h.html │ │ ├── class_a_eff_editor-members.html │ │ ├── class_a_eff_editor.html │ │ ├── class_audio_effect-members.html │ │ ├── class_audio_effect.html │ │ ├── class_audio_effect.png │ │ ├── class_audio_effect_x-members.html │ │ ├── class_audio_effect_x.html │ │ ├── class_audio_effect_x.png │ │ ├── deprecated.html │ │ ├── dir_2d3252dd12c84c66c1d25b26bb45a1f5.html │ │ ├── dir_77c628dfee72e555f82d5ef53b733f38.html │ │ ├── dir_f81105d3b854bea570aaf3bae5cb64c1.html │ │ ├── dir_fa0454ab79b4262333bf837ea3d765e9.html │ │ ├── dirs.html │ │ ├── doc_8h.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x67.html │ │ ├── functions_0x68.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6b.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_0x77.html │ │ ├── functions_0x78.html │ │ ├── functions_0x79.html │ │ ├── functions_0x7e.html │ │ ├── functions_func.html │ │ ├── functions_vars.html │ │ ├── globals.html │ │ ├── globals_0x62.html │ │ ├── globals_0x63.html │ │ ├── globals_0x64.html │ │ ├── globals_0x65.html │ │ ├── globals_0x66.html │ │ ├── globals_0x6b.html │ │ ├── globals_0x6d.html │ │ ├── globals_0x74.html │ │ ├── globals_0x76.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_eval_0x65.html │ │ ├── globals_eval_0x6b.html │ │ ├── globals_eval_0x6d.html │ │ ├── globals_eval_0x76.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── globals_vars.html │ │ ├── hierarchy.html │ │ ├── history.html │ │ ├── index.html │ │ ├── intro.html │ │ ├── license.html │ │ ├── maceditor.html │ │ ├── main.html │ │ ├── namespace_host_can_dos.html │ │ ├── namespace_plug_can_dos.html │ │ ├── namespacemembers.html │ │ ├── namespacemembers_vars.html │ │ ├── namespaces.html │ │ ├── others.html │ │ ├── pages.html │ │ ├── sequences.html │ │ ├── struct_a_effect-members.html │ │ ├── struct_a_effect.html │ │ ├── struct_e_rect-members.html │ │ ├── struct_e_rect.html │ │ ├── struct_midi_key_name-members.html │ │ ├── struct_midi_key_name.html │ │ ├── struct_midi_program_category-members.html │ │ ├── struct_midi_program_category.html │ │ ├── struct_midi_program_name-members.html │ │ ├── struct_midi_program_name.html │ │ ├── struct_vst_audio_file-members.html │ │ ├── struct_vst_audio_file.html │ │ ├── struct_vst_audio_file_marker-members.html │ │ ├── struct_vst_audio_file_marker.html │ │ ├── struct_vst_event-members.html │ │ ├── struct_vst_event.html │ │ ├── struct_vst_events-members.html │ │ ├── struct_vst_events.html │ │ ├── struct_vst_file_select-members.html │ │ ├── struct_vst_file_select.html │ │ ├── struct_vst_file_type-members.html │ │ ├── struct_vst_file_type.html │ │ ├── struct_vst_key_code-members.html │ │ ├── struct_vst_key_code.html │ │ ├── struct_vst_midi_event-members.html │ │ ├── struct_vst_midi_event.html │ │ ├── struct_vst_midi_sysex_event-members.html │ │ ├── struct_vst_midi_sysex_event.html │ │ ├── struct_vst_offline_task-members.html │ │ ├── struct_vst_offline_task.html │ │ ├── struct_vst_parameter_properties-members.html │ │ ├── struct_vst_parameter_properties.html │ │ ├── struct_vst_patch_chunk_info-members.html │ │ ├── struct_vst_patch_chunk_info.html │ │ ├── struct_vst_pin_properties-members.html │ │ ├── struct_vst_pin_properties.html │ │ ├── struct_vst_speaker_arrangement-members.html │ │ ├── struct_vst_speaker_arrangement.html │ │ ├── struct_vst_speaker_properties-members.html │ │ ├── struct_vst_speaker_properties.html │ │ ├── struct_vst_time_info-members.html │ │ ├── struct_vst_time_info.html │ │ ├── struct_vst_variable_io-members.html │ │ ├── struct_vst_variable_io.html │ │ ├── struct_vst_window-members.html │ │ ├── struct_vst_window.html │ │ ├── structfx_bank-members.html │ │ ├── structfx_bank.html │ │ ├── structfx_program-members.html │ │ ├── structfx_program.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ ├── thanks.html │ │ ├── tree.html │ │ ├── vstfxstore_8h.html │ │ ├── vstoffline.html │ │ ├── vstparamstruct.html │ │ ├── vstpluglogo.jpg │ │ ├── vstplugmain_8cpp.html │ │ └── whatsnew.html │ ├── sdk.menu.html │ ├── sdk.overview.html │ └── sdkdoc.css │ ├── index.html │ ├── pluginterfaces │ └── vst2.x │ │ ├── aeffect.h │ │ ├── aeffectx.h │ │ └── vstfxstore.h │ ├── public.sdk │ ├── samples │ │ └── vst2.x │ │ │ ├── adelay │ │ │ ├── adelay.cpp │ │ │ ├── adelay.h │ │ │ ├── adelaymain.cpp │ │ │ ├── editor │ │ │ │ ├── resources │ │ │ │ │ ├── bmp00128.bmp │ │ │ │ │ ├── bmp00129.bmp │ │ │ │ │ ├── bmp00130.bmp │ │ │ │ │ └── surrounddelay.rc │ │ │ │ ├── sdeditor.cpp │ │ │ │ └── sdeditor.h │ │ │ ├── surrounddelay.cpp │ │ │ ├── surrounddelay.h │ │ │ └── win │ │ │ │ ├── adelay.vcproj │ │ │ │ └── surrounddelay.vcproj │ │ │ ├── again │ │ │ ├── source │ │ │ │ ├── again.cpp │ │ │ │ └── again.h │ │ │ └── win │ │ │ │ └── again.vcproj │ │ │ ├── mac │ │ │ ├── minihost-Info.plist │ │ │ ├── vst 2.4 examples.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── vst2.4Info.plist │ │ │ ├── minihost │ │ │ ├── source │ │ │ │ ├── minieditor.cpp │ │ │ │ └── minihost.cpp │ │ │ └── win │ │ │ │ └── minihost.vcproj │ │ │ ├── vstxsynth │ │ │ ├── resource │ │ │ │ ├── vstxsynth.rc │ │ │ │ └── vstxsynth.vstxml │ │ │ ├── source │ │ │ │ ├── gmnames.h │ │ │ │ ├── vstxsynth.cpp │ │ │ │ ├── vstxsynth.h │ │ │ │ └── vstxsynthproc.cpp │ │ │ └── win │ │ │ │ └── vstxsynth.vcproj │ │ │ ├── win.vc2003 │ │ │ ├── adelay.vcproj │ │ │ ├── again.vcproj │ │ │ ├── minihost.vcproj │ │ │ ├── samples.sln │ │ │ ├── surrounddelay.vcproj │ │ │ └── vstxsynth.vcproj │ │ │ └── win │ │ │ ├── samples.sln │ │ │ └── vstplug.def │ └── source │ │ └── vst2.x │ │ ├── aeffeditor.h │ │ ├── audioeffect.cpp │ │ ├── audioeffect.h │ │ ├── audioeffectx.cpp │ │ ├── audioeffectx.h │ │ └── vstplugmain.cpp │ └── vstgui.sf │ ├── drawtest │ ├── mac │ │ ├── Info.plist │ │ ├── audiounit.exp │ │ ├── cw_vst_prefix.pch++ │ │ ├── drawtest.cw9prj │ │ ├── drawtest.plc │ │ ├── drawtest.xcode │ │ │ └── project.pbxproj │ │ ├── drawtest.xcodeproj │ │ │ └── project.pbxproj │ │ ├── xcode_au_prefix.h │ │ └── xcode_vst_prefix.h │ ├── resources │ │ ├── audiounit.r │ │ ├── bmp00001.png │ │ ├── bmp00100.png │ │ ├── bmp01000.png │ │ ├── bmp10001.bmp │ │ ├── bmp10002.bmp │ │ ├── bmp10003.bmp │ │ ├── bmp10004.bmp │ │ ├── bmp10005.bmp │ │ ├── bmp10006.bmp │ │ ├── bmp10007.bmp │ │ ├── bmp10008.bmp │ │ ├── bmp10009.bmp │ │ ├── bmp10010.bmp │ │ ├── bmp10011.bmp │ │ ├── bmp10012.bmp │ │ ├── bmp10013.bmp │ │ ├── bmp10014.bmp │ │ ├── bmp10015.bmp │ │ └── bmp10016.bmp │ ├── source │ │ ├── controlsgui.cpp │ │ ├── controlsgui.h │ │ ├── pdrawtesteditor.cpp │ │ ├── pdrawtesteditor.h │ │ ├── pdrawtesteffect.cpp │ │ ├── pdrawtesteffect.h │ │ ├── pdrawtestmain.cpp │ │ ├── pdrawtestview.cpp │ │ ├── pdrawtestview.h │ │ ├── pprimitivesviews.cpp │ │ └── pprimitivesviews.h │ └── win │ │ ├── drawtest.def │ │ ├── drawtest.rc │ │ └── drawtest.vcproj │ └── vstgui │ ├── Changelog │ ├── Documentation │ ├── Migrating from 2.3.rtf │ ├── html │ │ ├── aeffguieditor_8cpp.html │ │ ├── aeffguieditor_8h.html │ │ ├── annotated.html │ │ ├── cfileselector_8cpp.html │ │ ├── cfileselector_8h.html │ │ ├── class_a_eff_g_u_i_editor-members.html │ │ ├── class_a_eff_g_u_i_editor.html │ │ ├── class_c_anim_knob-members.html │ │ ├── class_c_anim_knob.html │ │ ├── class_c_anim_knob.png │ │ ├── class_c_attribute_list_entry-members.html │ │ ├── class_c_attribute_list_entry.html │ │ ├── class_c_auto_animation-members.html │ │ ├── class_c_auto_animation.html │ │ ├── class_c_auto_animation.png │ │ ├── class_c_bitmap-members.html │ │ ├── class_c_bitmap.html │ │ ├── class_c_bitmap.png │ │ ├── class_c_c_view-members.html │ │ ├── class_c_c_view.html │ │ ├── class_c_control-members.html │ │ ├── class_c_control.html │ │ ├── class_c_control.png │ │ ├── class_c_control_listener-members.html │ │ ├── class_c_control_listener.html │ │ ├── class_c_control_listener.png │ │ ├── class_c_drag_container-members.html │ │ ├── class_c_drag_container.html │ │ ├── class_c_drag_container.png │ │ ├── class_c_draw_context-members.html │ │ ├── class_c_draw_context.html │ │ ├── class_c_draw_context.png │ │ ├── class_c_file_selector-members.html │ │ ├── class_c_file_selector.html │ │ ├── class_c_frame-members.html │ │ ├── class_c_frame.html │ │ ├── class_c_frame.png │ │ ├── class_c_horizontal_slider-members.html │ │ ├── class_c_horizontal_slider.html │ │ ├── class_c_horizontal_slider.png │ │ ├── class_c_horizontal_switch-members.html │ │ ├── class_c_horizontal_switch.html │ │ ├── class_c_horizontal_switch.png │ │ ├── class_c_kick_button-members.html │ │ ├── class_c_kick_button.html │ │ ├── class_c_kick_button.png │ │ ├── class_c_knob-members.html │ │ ├── class_c_knob.html │ │ ├── class_c_knob.png │ │ ├── class_c_movie_bitmap-members.html │ │ ├── class_c_movie_bitmap.html │ │ ├── class_c_movie_bitmap.png │ │ ├── class_c_movie_button-members.html │ │ ├── class_c_movie_button.html │ │ ├── class_c_movie_button.png │ │ ├── class_c_offscreen_context-members.html │ │ ├── class_c_offscreen_context.html │ │ ├── class_c_offscreen_context.png │ │ ├── class_c_on_off_button-members.html │ │ ├── class_c_on_off_button.html │ │ ├── class_c_on_off_button.png │ │ ├── class_c_option_menu-members.html │ │ ├── class_c_option_menu.html │ │ ├── class_c_option_menu.png │ │ ├── class_c_option_menu_scheme-members.html │ │ ├── class_c_option_menu_scheme.html │ │ ├── class_c_option_menu_scheme.png │ │ ├── class_c_param_display-members.html │ │ ├── class_c_param_display.html │ │ ├── class_c_param_display.png │ │ ├── class_c_reference_counter-members.html │ │ ├── class_c_reference_counter.html │ │ ├── class_c_reference_counter.png │ │ ├── class_c_rocker_switch-members.html │ │ ├── class_c_rocker_switch.html │ │ ├── class_c_rocker_switch.png │ │ ├── class_c_scroll_container-members.html │ │ ├── class_c_scroll_container.html │ │ ├── class_c_scroll_container.png │ │ ├── class_c_scroll_view-members.html │ │ ├── class_c_scroll_view.html │ │ ├── class_c_scroll_view.png │ │ ├── class_c_scrollbar-members.html │ │ ├── class_c_scrollbar.html │ │ ├── class_c_scrollbar.png │ │ ├── class_c_slider-members.html │ │ ├── class_c_slider.html │ │ ├── class_c_slider.png │ │ ├── class_c_special_digit-members.html │ │ ├── class_c_special_digit.html │ │ ├── class_c_special_digit.png │ │ ├── class_c_splash_screen-members.html │ │ ├── class_c_splash_screen.html │ │ ├── class_c_splash_screen.png │ │ ├── class_c_splash_screen_view-members.html │ │ ├── class_c_splash_screen_view.html │ │ ├── class_c_splash_screen_view.png │ │ ├── class_c_tab_button-members.html │ │ ├── class_c_tab_button.html │ │ ├── class_c_tab_button.png │ │ ├── class_c_tab_child_view-members.html │ │ ├── class_c_tab_child_view.html │ │ ├── class_c_tab_child_view.png │ │ ├── class_c_tab_view-members.html │ │ ├── class_c_tab_view.html │ │ ├── class_c_tab_view.png │ │ ├── class_c_text_edit-members.html │ │ ├── class_c_text_edit.html │ │ ├── class_c_text_edit.png │ │ ├── class_c_text_label-members.html │ │ ├── class_c_text_label.html │ │ ├── class_c_text_label.png │ │ ├── class_c_vertical_slider-members.html │ │ ├── class_c_vertical_slider.html │ │ ├── class_c_vertical_slider.png │ │ ├── class_c_vertical_switch-members.html │ │ ├── class_c_vertical_switch.html │ │ ├── class_c_vertical_switch.png │ │ ├── class_c_view-members.html │ │ ├── class_c_view.html │ │ ├── class_c_view.png │ │ ├── class_c_view_container-members.html │ │ ├── class_c_view_container.html │ │ ├── class_c_view_container.png │ │ ├── class_c_vu_meter-members.html │ │ ├── class_c_vu_meter.html │ │ ├── class_c_vu_meter.png │ │ ├── class_i_scrollbar_drawer-members.html │ │ ├── class_i_scrollbar_drawer.html │ │ ├── class_plugin_g_u_i_editor-members.html │ │ ├── class_plugin_g_u_i_editor.html │ │ ├── cscrollview_8cpp.html │ │ ├── cscrollview_8h.html │ │ ├── ctabview_8cpp.html │ │ ├── ctabview_8h.html │ │ ├── deprecated.html │ │ ├── doc_8h.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── ftv2blank.png │ │ ├── ftv2doc.png │ │ ├── ftv2folderclosed.png │ │ ├── ftv2folderopen.png │ │ ├── ftv2lastnode.png │ │ ├── ftv2link.png │ │ ├── ftv2mlastnode.png │ │ ├── ftv2mnode.png │ │ ├── ftv2node.png │ │ ├── ftv2plastnode.png │ │ ├── ftv2pnode.png │ │ ├── ftv2vertline.png │ │ ├── functions.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x67.html │ │ ├── functions_0x68.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6b.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_0x77.html │ │ ├── functions_0x78.html │ │ ├── functions_0x79.html │ │ ├── functions_0x7a.html │ │ ├── functions_0x7e.html │ │ ├── functions_eval.html │ │ ├── functions_func.html │ │ ├── functions_func_0x62.html │ │ ├── functions_func_0x63.html │ │ ├── functions_func_0x64.html │ │ ├── functions_func_0x65.html │ │ ├── functions_func_0x66.html │ │ ├── functions_func_0x67.html │ │ ├── functions_func_0x68.html │ │ ├── functions_func_0x69.html │ │ ├── functions_func_0x6c.html │ │ ├── functions_func_0x6d.html │ │ ├── functions_func_0x6e.html │ │ ├── functions_func_0x6f.html │ │ ├── functions_func_0x70.html │ │ ├── functions_func_0x72.html │ │ ├── functions_func_0x73.html │ │ ├── functions_func_0x74.html │ │ ├── functions_func_0x75.html │ │ ├── functions_func_0x76.html │ │ ├── functions_func_0x77.html │ │ ├── functions_func_0x7e.html │ │ ├── functions_rela.html │ │ ├── functions_vars.html │ │ ├── functions_vars_0x62.html │ │ ├── functions_vars_0x63.html │ │ ├── functions_vars_0x64.html │ │ ├── functions_vars_0x65.html │ │ ├── functions_vars_0x66.html │ │ ├── functions_vars_0x67.html │ │ ├── functions_vars_0x68.html │ │ ├── functions_vars_0x69.html │ │ ├── functions_vars_0x6b.html │ │ ├── functions_vars_0x6c.html │ │ ├── functions_vars_0x6d.html │ │ ├── functions_vars_0x6e.html │ │ ├── functions_vars_0x6f.html │ │ ├── functions_vars_0x70.html │ │ ├── functions_vars_0x72.html │ │ ├── functions_vars_0x73.html │ │ ├── functions_vars_0x74.html │ │ ├── functions_vars_0x75.html │ │ ├── functions_vars_0x76.html │ │ ├── functions_vars_0x77.html │ │ ├── functions_vars_0x78.html │ │ ├── functions_vars_0x79.html │ │ ├── functions_vars_0x7a.html │ │ ├── globals.html │ │ ├── globals_0x61.html │ │ ├── globals_0x62.html │ │ ├── globals_0x63.html │ │ ├── globals_0x65.html │ │ ├── globals_0x66.html │ │ ├── globals_0x67.html │ │ ├── globals_0x6b.html │ │ ├── globals_0x6d.html │ │ ├── globals_0x6e.html │ │ ├── globals_0x6f.html │ │ ├── globals_0x71.html │ │ ├── globals_0x72.html │ │ ├── globals_0x73.html │ │ ├── globals_0x74.html │ │ ├── globals_0x75.html │ │ ├── globals_0x76.html │ │ ├── globals_0x77.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_type.html │ │ ├── globals_vars.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── intro.html │ │ ├── license.html │ │ ├── maceditor.html │ │ ├── main.html │ │ ├── others.html │ │ ├── pages.html │ │ ├── plugguieditor_8cpp.html │ │ ├── plugguieditor_8h.html │ │ ├── sequences.html │ │ ├── struct_c_color-members.html │ │ ├── struct_c_color.html │ │ ├── struct_c_point-members.html │ │ ├── struct_c_point.html │ │ ├── struct_c_rect-members.html │ │ ├── struct_c_rect.html │ │ ├── struct_e_rect-members.html │ │ ├── struct_e_rect.html │ │ ├── struct_vst_file_select-members.html │ │ ├── struct_vst_file_select.html │ │ ├── struct_vst_file_type-members.html │ │ ├── struct_vst_file_type.html │ │ ├── struct_vst_key_code-members.html │ │ ├── struct_vst_key_code.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ ├── thanks.html │ │ ├── tree.html │ │ ├── vstcontrols_8cpp.html │ │ ├── vstcontrols_8h.html │ │ ├── vstgui_8cpp.html │ │ ├── vstgui_8h.html │ │ ├── vstkeycode_8h.html │ │ ├── vstoffline.html │ │ ├── vstparamstruct.html │ │ ├── vstplugscarbon_8h.html │ │ ├── vstplugsmac_8h.html │ │ ├── vstplugsmacho_8h.html │ │ ├── vstplugsquartz_8h.html │ │ └── whatsnew.html │ └── index.html │ ├── aeffguieditor.cpp │ ├── aeffguieditor.h │ ├── cfileselector.cpp │ ├── cfileselector.h │ ├── cscrollview.cpp │ ├── cscrollview.h │ ├── ctabview.cpp │ ├── ctabview.h │ ├── plugguieditor.cpp │ ├── plugguieditor.h │ ├── vstcontrols.cpp │ ├── vstcontrols.h │ ├── vstgui.cpp │ ├── vstgui.h │ ├── vstkeycode.h │ ├── vstplugscarbon.h │ ├── vstplugsmac.h │ ├── vstplugsmacho.h │ └── vstplugsquartz.h ├── Build-FB2KComponent.ps1 ├── History.h ├── Infrastructure ├── AlbumArt.cpp ├── Configuration.cpp ├── Configuration.h ├── ConfigurationMap.h ├── ContextMenu.cpp ├── ContextMenu.h ├── Exception.cpp ├── Exception.h ├── FileHasher.cpp ├── FileHasher.h ├── FileTypeRegistrar.cpp ├── FileTypeRegistrar.h ├── InitStageCallback.cpp ├── InputDecoder.cpp ├── InputDecoder.h ├── MIDIPresetFilter.cpp ├── MIDIPresetFilter.h ├── PreferencesHMI.cpp ├── PreferencesHMILayout.h ├── PreferencesPaths.cpp ├── PreferencesPathsLayout.h ├── PreferencesProcessing.cpp ├── PreferencesProcessingLayout.h ├── PreferencesRoot.cpp ├── PreferencesRootLayout.h └── SoundFonts.cpp ├── LICENSE ├── MIDI ├── KaraokeProcessor.cpp ├── KaraokeProcessor.h ├── MIDIPreset.cpp ├── MIDIPreset.h ├── MIDISysExDumps.cpp ├── MIDISysExDumps.h ├── MIDISysExFilter.cpp ├── MIDISysExFilter.h ├── SoundFontCache.cpp └── SoundFontCache.h ├── Players ├── ADLPlayer.cpp ├── ADLPlayer.h ├── BASSInitializer.h ├── BMPlayer.cpp ├── BMPlayer.h ├── EdMPlayer.cpp ├── EdMPlayer.h ├── FSPlayer.cpp ├── FSPlayer.h ├── FluidSynth.h ├── MCIPlayer.cpp ├── MCIPlayer.h ├── MT32Player │ ├── MT32Player.cpp │ ├── MT32Player.h │ ├── kq6mtgm.h │ └── mtgm.h ├── NukePlayer.cpp ├── NukePlayer.h ├── NukeSC-55Player.cpp ├── NukeSC-55Player.h ├── OPNPlayer │ ├── OPNPlayer.cpp │ ├── OPNPlayer.h │ ├── Tomsoft.wopn.h │ ├── fmmidi.wopn.h │ ├── gems-fmlib-gmize.wopn.h │ ├── gs-by-papiezak-and-sneakernets.wopn.h │ └── xg.wopn.h ├── Player.cpp ├── Player.h ├── SCPlayer.cpp ├── SCPlayer.h ├── SecretSauce.cpp ├── SecretSauce.h ├── SoundFont.h ├── VSTi.cpp ├── VSTi.h ├── VSTiPlayer.cpp └── VSTiPlayer.h ├── README.md ├── foo_midi.cpp ├── foo_midi.rc ├── foo_midi.sln ├── foo_midi.vcxproj ├── foo_midi.vcxproj.filters ├── framework.cpp ├── framework.h ├── include ├── DXi.h ├── DeferZeroFill.h ├── MfxTime.h └── MidiFilter.h ├── patrons.h ├── resource.h ├── scpipe ├── .gitignore ├── LICENSE ├── README.md ├── resource.h ├── sccore.cpp ├── sccore.h ├── scpipe.cpp ├── scpipe.rc ├── scpipe32.vcxproj ├── scpipe64.vcxproj ├── scpipe64.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h └── vsthost ├── Makefile ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── vsthost.cpp ├── vsthost.ico ├── vsthost.rc ├── vsthost32.vcxproj ├── vsthost32.vcxproj.filters ├── vsthost64.vcxproj └── vsthost64.vcxproj.filters /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "3rdParty/libmidi"] 2 | path = 3rdParty/libmidi 3 | url = https://github.com/stuerp/libmidi.git 4 | -------------------------------------------------------------------------------- /3rdParty/Emu de MIDI/CMIDIModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/Emu de MIDI/CMIDIModule.cpp -------------------------------------------------------------------------------- /3rdParty/Emu de MIDI/CMIDIModule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/Emu de MIDI/CMIDIModule.hpp -------------------------------------------------------------------------------- /3rdParty/Emu de MIDI/COpllDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/Emu de MIDI/COpllDevice.cpp -------------------------------------------------------------------------------- /3rdParty/Emu de MIDI/CSMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/Emu de MIDI/CSMF.cpp -------------------------------------------------------------------------------- /3rdParty/Emu de MIDI/device/2413tone.ill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/Emu de MIDI/device/2413tone.ill -------------------------------------------------------------------------------- /3rdParty/NukedSC-55/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "3rdparty/rtmidi"] 2 | path = 3rdparty/rtmidi 3 | url = https://github.com/Wohlstand/rtmidi.git 4 | -------------------------------------------------------------------------------- /3rdParty/NukedSC-55/data/back.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/NukedSC-55/data/back.data -------------------------------------------------------------------------------- /3rdParty/NukedSC-55/mcu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/NukedSC-55/mcu1.png -------------------------------------------------------------------------------- /3rdParty/NukedSC-55/mcu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/NukedSC-55/mcu2.png -------------------------------------------------------------------------------- /3rdParty/NukedSC-55/pcm_tracing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/NukedSC-55/pcm_tracing.jpg -------------------------------------------------------------------------------- /3rdParty/bass/bass.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bass.chm -------------------------------------------------------------------------------- /3rdParty/bass/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bass.dll -------------------------------------------------------------------------------- /3rdParty/bass/bass_mpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bass_mpc.dll -------------------------------------------------------------------------------- /3rdParty/bass/bassflac.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bassflac.chm -------------------------------------------------------------------------------- /3rdParty/bass/bassflac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bassflac.dll -------------------------------------------------------------------------------- /3rdParty/bass/bassmidi.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bassmidi.chm -------------------------------------------------------------------------------- /3rdParty/bass/bassmidi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bassmidi.dll -------------------------------------------------------------------------------- /3rdParty/bass/bassopus.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bassopus.chm -------------------------------------------------------------------------------- /3rdParty/bass/bassopus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/bassopus.dll -------------------------------------------------------------------------------- /3rdParty/bass/basswv.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/basswv.chm -------------------------------------------------------------------------------- /3rdParty/bass/basswv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/basswv.dll -------------------------------------------------------------------------------- /3rdParty/bass/c/3dtest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = 3dtest.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lcomctl32 -lgdi32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/bass.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/bass.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/bass_mpc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/bass_mpc.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/bassflac.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/bassflac.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/bassmidi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/bassmidi.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/bassopus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/bassopus.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/basstest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = basstest.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lcomctl32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/basswv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/basswv.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/contest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = contest.exe 4 | 5 | all: $(TARGET) 6 | 7 | clean: 8 | $(RM) $(OUTDIR)\$(TARGET) 9 | -------------------------------------------------------------------------------- /3rdParty/bass/c/custloop/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = custloop.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lgdi32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/devlist/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = devlist.exe 4 | 5 | all: $(TARGET) 6 | 7 | clean: 8 | $(RM) $(OUTDIR)\$(TARGET) 9 | -------------------------------------------------------------------------------- /3rdParty/bass/c/dsptest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = dsptest.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/fxtest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = fxtest.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lcomctl32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/livefx/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = livefx.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomctl32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/livespec/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = livespec.exe 4 | FLAGS += -mwindows 5 | LIBS += -lgdi32 -lwinmm 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/miditest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = miditest.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lcomctl32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/modtest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = modtest.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lcomctl32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/multi/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = multi.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/netradio/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = netradio.exe 4 | FLAGS += -mwindows 5 | 6 | all: $(TARGET) 7 | 8 | clean: 9 | $(RM) $(OUTDIR)\$(TARGET) 10 | -------------------------------------------------------------------------------- /3rdParty/bass/c/plugins/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = plugins.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lcomctl32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/rectest/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = rectest.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lcomctl32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/sf2pack/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = sf2pack.exe 4 | 5 | all: $(TARGET) 6 | 7 | clean: 8 | $(RM) $(OUTDIR)\$(TARGET) 9 | -------------------------------------------------------------------------------- /3rdParty/bass/c/speakers/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = speakers.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/spectrum/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = spectrum.exe 4 | FLAGS += -mwindows 5 | LIBS += -lcomdlg32 -lgdi32 -lwinmm 6 | 7 | all: $(TARGET) 8 | 9 | clean: 10 | $(RM) $(OUTDIR)\$(TARGET) 11 | -------------------------------------------------------------------------------- /3rdParty/bass/c/synth/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = synth.exe 4 | 5 | all: $(TARGET) 6 | 7 | clean: 8 | $(RM) $(OUTDIR)\$(TARGET) 9 | -------------------------------------------------------------------------------- /3rdParty/bass/c/writewav/makefile: -------------------------------------------------------------------------------- 1 | include ..\makefile.in 2 | 3 | TARGET = writewav.exe 4 | 5 | all: $(TARGET) 6 | 7 | clean: 8 | $(RM) $(OUTDIR)\$(TARGET) 9 | -------------------------------------------------------------------------------- /3rdParty/bass/c/x64/bass.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/x64/bass.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/x64/bass_mpc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/x64/bass_mpc.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/x64/bassflac.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/x64/bassflac.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/x64/bassmidi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/x64/bassmidi.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/x64/bassopus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/x64/bassopus.lib -------------------------------------------------------------------------------- /3rdParty/bass/c/x64/basswv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/c/x64/basswv.lib -------------------------------------------------------------------------------- /3rdParty/bass/delphi/3dTest/DTMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/3dTest/DTMain.dfm -------------------------------------------------------------------------------- /3rdParty/bass/delphi/BassTest/BTMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/BassTest/BTMain.dfm -------------------------------------------------------------------------------- /3rdParty/bass/delphi/DspTest/DTMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/DspTest/DTMain.dfm -------------------------------------------------------------------------------- /3rdParty/bass/delphi/SampleVis/main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/SampleVis/main.dfm -------------------------------------------------------------------------------- /3rdParty/bass/delphi/StreamTest/STMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/StreamTest/STMain.dfm -------------------------------------------------------------------------------- /3rdParty/bass/delphi/livefx/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/livefx/Unit1.pas -------------------------------------------------------------------------------- /3rdParty/bass/delphi/rectest/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/rectest/Unit1.pas -------------------------------------------------------------------------------- /3rdParty/bass/delphi/spectrum/spectrum.dpr: -------------------------------------------------------------------------------- 1 | program spectrum; 2 | 3 | uses 4 | Unit1, 5 | Bass in '..\Bass.pas'; 6 | 7 | begin 8 | WinMain; 9 | end. -------------------------------------------------------------------------------- /3rdParty/bass/delphi/synth/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/synth/Main.pas -------------------------------------------------------------------------------- /3rdParty/bass/delphi/writewav/UnitMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/delphi/writewav/UnitMain.dfm -------------------------------------------------------------------------------- /3rdParty/bass/miditest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/miditest.exe -------------------------------------------------------------------------------- /3rdParty/bass/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/readme.txt -------------------------------------------------------------------------------- /3rdParty/bass/x64/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/x64/bass.dll -------------------------------------------------------------------------------- /3rdParty/bass/x64/bass_mpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/x64/bass_mpc.dll -------------------------------------------------------------------------------- /3rdParty/bass/x64/bassflac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/x64/bassflac.dll -------------------------------------------------------------------------------- /3rdParty/bass/x64/bassmidi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/x64/bassmidi.dll -------------------------------------------------------------------------------- /3rdParty/bass/x64/bassopus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/x64/bassopus.dll -------------------------------------------------------------------------------- /3rdParty/bass/x64/basswv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/bass/x64/basswv.dll -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/.gitattributes: -------------------------------------------------------------------------------- 1 | *.rc text eol=crlf 2 | *.manifest text eol=crlf 3 | *.def text eol=crlf 4 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/AUTHORS: -------------------------------------------------------------------------------- 1 | Joel Yliluoma - Original creator of ADLMIDI 2 | Vitaly Novichkov - Creator of libADLMIDI 3 | Jean Pierre Cimalando 4 | 5 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/android/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | libs/ 3 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/cmake/djgpp/djgpp-cmake.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cmake_toolchain_root=/home/vitaly/_git_repos/libADLMIDI/cmake/djgpp 4 | 5 | source /home/vitaly/_git_repos/libADLMIDI/cmake/djgpp/djgpp-cmake-core.sh 6 | 7 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/cmake/openwattcom/Linux-OpenWatcom-C.cmake: -------------------------------------------------------------------------------- 1 | include(Platform/Windows-OpenWatcom) 2 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/cmake/openwattcom/Linux-OpenWatcom-CXX.cmake: -------------------------------------------------------------------------------- 1 | include(Platform/Windows-OpenWatcom) 2 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/adldata-cache.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/adldata-cache.dat -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/AdvancedCivilization.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/AdvancedCivilization.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/BubbleBobble.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/BubbleBobble.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/DeathGate.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/DeathGate.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/Discworld.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/Discworld.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/FIFAInternationalSoccer.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/FIFAInternationalSoccer.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/Guilty.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/Guilty.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/LittleBigAdventure.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/LittleBigAdventure.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/NationalHockeyLeaguePA.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/NationalHockeyLeaguePA.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/Putt-Putt-2.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/Putt-Putt-2.ad -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/Putt-Putt-2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/Putt-Putt-2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/StarshipInvasion.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/StarshipInvasion.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/SuperStreetFighter2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/SuperStreetFighter2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/Syndicate.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/Syndicate.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/SyndicateWars.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/SyndicateWars.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/SystemShock.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/SystemShock.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/TerraNovaStrikeForceCenturi.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/TerraNovaStrikeForceCenturi.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/ThemeHospital.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/ThemeHospital.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/UltimateSoccerManager.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/UltimateSoccerManager.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/dupes/SimonTheSorcerer2.AD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/dupes/SimonTheSorcerer2.AD -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/master_of_magic.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/master_of_magic.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/master_of_magic_orchestral.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/master_of_magic_orchestral.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/master_of_magic_standard.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/master_of_magic_standard.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/miss-inst/BardsTaleConstruction.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/miss-inst/BardsTaleConstruction.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/miss-inst/Caesar2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/miss-inst/Caesar2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/miss-inst/HighSeasTrader.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/miss-inst/HighSeasTrader.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/miss-inst/LordsOfTheRealm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/miss-inst/LordsOfTheRealm.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/miss-inst/WhenTwoWorldsWar.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/miss-inst/WhenTwoWorldsWar.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/nemesis.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/nemesis.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/AirBucks.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/AirBucks.ad -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/BattleChess4000-2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/BattleChess4000-2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/BattleChess4000-dupe.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/BattleChess4000-dupe.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/BattleChess4000.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/BattleChess4000.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/InteritTheEarth.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/InteritTheEarth.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/InteritTheEarth2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/InteritTheEarth2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/JaggedAlliance.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/JaggedAlliance.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/KasparovGambit.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/KasparovGambit.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/MagicCarpet2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/MagicCarpet2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/ReturnToZork.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/ReturnToZork.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/UltimaUnderworld2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/UltimaUnderworld2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/WreckinCrew.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/WreckinCrew.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/lost-vikings.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/lost-vikings.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/non-gm/warcraft1.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/non-gm/warcraft1.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/simfarm.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/simfarm.ad -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/simfarm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/simfarm.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/star_control_3.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/star_control_3.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ail/warcraft2.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ail/warcraft2.ad -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/bnk_files/grassman1.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/bnk_files/grassman1.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/bnk_files/grassman2.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/bnk_files/grassman2.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/bnk_files/master_of_magic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/bnk_files/master_of_magic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/bnk_files/themepark.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/bnk_files/themepark.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/dmx/DMXOPL-by-sneakernets-old.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/dmx/DMXOPL-by-sneakernets-old.op2 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/dmx/doom1.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/dmx/doom1.op2 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/dmx/doom2.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/dmx/doom2.op2 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/dmx/heretic.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/dmx/heretic.op2 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/dmx/raptor.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/dmx/raptor.op2 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/dmx/strife.op2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/dmx/strife.op2 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Aces_of_the_Deep/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Aces_of_the_Deep/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Aces_of_the_Deep/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Aces_of_the_Deep/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Anvil_of_Dawn/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Anvil_of_Dawn/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Anvil_of_Dawn/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Anvil_of_Dawn/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent/hammelo.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent/hammelo.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent/intdrum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent/intdrum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent/intmelo.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent/intmelo.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent/rickdrum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent/rickdrum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent/rickmelo.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent/rickmelo.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent_2/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent_2/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Descent_2/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Descent_2/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Earthsiege/drum-old.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Earthsiege/drum-old.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Earthsiege/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Earthsiege/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Earthsiege/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Earthsiege/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Normality/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Normality/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Normality/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Normality/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Shattered_Steel/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Shattered_Steel/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Shattered_Steel/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Shattered_Steel/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Theme_Park/drum.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Theme_Park/drum.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/hmi/Theme_Park/melodic.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/hmi/Theme_Park/melodic.bnk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/$GMOPL.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/$GMOPL.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/0.SBI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/0.SBI -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/1gmopl.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/1gmopl.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/CHRMPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/CHRMPERC.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM-1.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM-1.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM-2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM-2.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DOOM2.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM2.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM3.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM3.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM4.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUM4.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUMOPL.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUMOPL.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUMS.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/DRUMS.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/GENMIDI.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/GENMIDI.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/GM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/GM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/GMOPL1.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/GMOPL1.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/MAUIFM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/MAUIFM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/MAUIPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/MAUIPERC.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/MT32.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/MT32.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/NVD.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/NVD.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/PERCUSSV.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/PERCUSSV.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/TIMBRE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/TIMBRE.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/gmopl.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/Inst/gmopl.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/JOconnel-DRUM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/JOconnel-DRUM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/JOconnel.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/JOconnel.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/fmsymth_internal_drum.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/fmsymth_internal_drum.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/fmsymth_internal_melodic.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/fmsymth_internal_melodic.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/game.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/game.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/gmopl_wohl_mod-drums.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/gmopl_wohl_mod-drums.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/gmopl_wohl_mod.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/gmopl_wohl_mod.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/BASS.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/BASS.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/BRASS.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/BRASS.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/CHRMPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/CHRMPERC.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/DRUM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/DRUM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/ENSEMBLE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/ENSEMBLE.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/FMTIMBRE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/FMTIMBRE.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GENMIDI.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GENMIDI.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GMOPL.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GMOPL.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GMOPL2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GMOPL2.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GUITAR.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/GUITAR.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/HARP.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/HARP.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MAUIFM.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MAUIFM.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MAUIPERC.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MAUIPERC.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MELODY.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MELODY.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MT32.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/MT32.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/ORGAN.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/ORGAN.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/PERCUSSV.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/PERCUSSV.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/PIANO.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/PIANO.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/PIPE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/PIPE.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/REED.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/REED.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNLEAD.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNLEAD.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNLEAD2.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNLEAD2.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNLEAD3.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNLEAD3.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNPAD.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/SYNPAD.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/TIMBRE.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/TIMBRE.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/VIOLIN.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/ibk/VIOLIN.IBK -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/mt_fm.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/mt_fm.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/nitemare_3d.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/nitemare_3d.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/soccer-genmidi.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/soccer-genmidi.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ibk_files/soccer-percs.ibk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ibk_files/soccer-percs.ibk -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/2x2.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/2x2.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/2x2.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/2x2.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/fat2.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/fat2.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/fat2_modded.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/fat2_modded.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/fat4-fixed.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/fat4-fixed.opl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/fat4-fixed.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/fat4-fixed.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/fat4.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/fat4.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/fat4_old.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/fat4_old.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/fat4_probe.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/fat4_probe.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/gmoconel.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/gmoconel.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/gmopl_wohl_mod.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/gmopl_wohl_mod.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/jv_2op.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/jv_2op.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/wallace.op3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/wallace.op3 -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/junglevision/wallace.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/junglevision/wallace.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/misc_files/bisqwit.adlraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/misc_files/bisqwit.adlraw -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/misc_files/cartooners-adlib-decrypted.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/misc_files/cartooners-adlib-decrypted.dat -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/apogee_duke3d99.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/apogee_duke3d99.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/apogee_xenophage.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/apogee_xenophage.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/bloodtmb.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/bloodtmb.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/d3dtimbr.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/d3dtimbr.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/default.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/default.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/nam.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/nam.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/rott.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/rott.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/tmb_files/swtimbr.tmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/tmb_files/swtimbr.tmb -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/wopl_files/Apogee-IMF-90.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/wopl_files/Apogee-IMF-90.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/wopl_files/DMXOPL3-by-sneakernets-GS.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/wopl_files/DMXOPL3-by-sneakernets-GS.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/wopl_files/GM-By-J.A.Nguyen-and-Wohlstand.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/wopl_files/GM-By-J.A.Nguyen-and-Wohlstand.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/wopl_files/Wohlstand's-modded-FatMan.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/wopl_files/Wohlstand's-modded-FatMan.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/wopl_files/lostvik.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/wopl_files/lostvik.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/wopl_files/msadlib.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/wopl_files/msadlib.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ymf262.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ymf262.odt -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/fm_banks/ymf262.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/fm_banks/ymf262.pdf -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/projects/watcom/.gitignore: -------------------------------------------------------------------------------- 1 | *.obj 2 | *.lib 3 | *.exe 4 | *.elf 5 | *.lb1 6 | *.ERR 7 | *.err 8 | *.mk 9 | *.mk1 10 | *.lk1 11 | *.map 12 | *.sym 13 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/projects/watcom/bass.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/projects/watcom/bass.mid -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/projects/watcom/dmxopl3.wop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/projects/watcom/dmxopl3.wop -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/projects/watcom/nin-hlah.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/projects/watcom/nin-hlah.mid -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/projects/watcom/onestop.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/projects/watcom/onestop.mid -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/projects/watcom/playmidi-debug-crashful.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/projects/watcom/playmidi-debug-crashful.zip -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/projects/watcom/ttd10.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/projects/watcom/ttd10.mid -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/test.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/test.wopl -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/test/common/catch_main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file 2 | #include 3 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/dumpbank/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_executable(adldumpbank dumpbank.cpp) 2 | 3 | set_nopie(adldumpbank) 4 | 5 | install(TARGETS adldumpbank 6 | RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}") 7 | 8 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/dumpmiles/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_executable(adldumpmiles dumpmiles.cpp) 2 | 3 | set_nopie(adldumpmiles) 4 | 5 | install(TARGETS adldumpmiles 6 | RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}") 7 | 8 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/winmm_drv/cpl/adlconfig.def: -------------------------------------------------------------------------------- 1 | LIBRARY "libADLMIDIConfig" 2 | 3 | EXPORTS 4 | CPlApplet 5 | ToolDlgProc 6 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/winmm_drv/cpl/opl3icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libADLMIDI/utils/winmm_drv/cpl/opl3icon.ico -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/winmm_drv/cpl/res-cpl.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 123 RT_MANIFEST "adlconfig.manifest" 4 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/winmm_drv/cpl/res-tool.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 1 RT_MANIFEST "adlconfig.manifest" 4 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/winmm_drv/installer/install.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup install -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/winmm_drv/installer/uninstall.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup uninstall -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/utils/winmm_drv/src/winmm_drv.def: -------------------------------------------------------------------------------- 1 | LIBRARY adlmidisynth 2 | EXPORTS 3 | DriverProc 4 | modMessage 5 | adl_getBankNames 6 | adl_getBanksCount 7 | -------------------------------------------------------------------------------- /3rdParty/libADLMIDI/windows/framework.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 4 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/.gitattributes: -------------------------------------------------------------------------------- 1 | *.rc text eol=crlf 2 | *.manifest text eol=crlf 3 | *.def text eol=crlf 4 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/AUTHORS: -------------------------------------------------------------------------------- 1 | Joel Yliluoma - Original creator of ADLMIDI 2 | Vitaly Novichkov - Creator of libADLMIDI and libOPNMIDI 3 | Jean Pierre Cimalando 4 | 5 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/android/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | libs/ 3 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/LINKS.txt: -------------------------------------------------------------------------------- 1 | https://github.com/Wohlstand/OPN2BankEditor 2 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/Tomsoft.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/fm_banks/Tomsoft.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/fmmidi.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/fm_banks/fmmidi.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/gems-fmlib-gmize.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/fm_banks/gems-fmlib-gmize.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/gm-old.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/fm_banks/gm-old.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/gm.wopn: -------------------------------------------------------------------------------- 1 | xg.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/gs-by-papiezak-and-sneakernets.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/fm_banks/gs-by-papiezak-and-sneakernets.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/fm_banks/xg.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/fm_banks/xg.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/src/chips/np2/fmgen_fmtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/src/chips/np2/fmgen_fmtimer.h -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/src/chips/pmdwin/rhythmdata.c: -------------------------------------------------------------------------------- 1 | #include "rhythmdata.h" 2 | 3 | const unsigned char* rhythmdata[6] = { 4 | BD_2608, SD_2608, TOP_2608, HH_2608, TOM_2608, RIM_2608 5 | }; 6 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/test/common/catch_main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file 2 | #include 3 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/fmmidi_prog/002 [GYB] fmmidi.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/utils/fmmidi_prog/002 [GYB] fmmidi.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/fmmidi_prog/fmmidi.wopn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/utils/fmmidi_prog/fmmidi.wopn -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/fmmidi_prog/make.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | WOPN=wopn 4 | gcc program2wopn.c wopn/wopn_file.c -I${WOPN} -o program2wopn 5 | ./program2wopn 6 | rm program2wopn 7 | 8 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/winmm_drv/cpl/opn2icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/utils/winmm_drv/cpl/opn2icon.ico -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/winmm_drv/cpl/opnconfig.def: -------------------------------------------------------------------------------- 1 | LIBRARY "libOPNMIDIConfig" 2 | 3 | EXPORTS 4 | CPlApplet 5 | ToolDlgProc 6 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/winmm_drv/cpl/res-cpl.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 123 RT_MANIFEST "opnconfig.manifest" 4 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/winmm_drv/cpl/res-tool.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 1 RT_MANIFEST "opnconfig.manifest" 4 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/winmm_drv/installer/install.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup install -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/winmm_drv/installer/uninstall.bat: -------------------------------------------------------------------------------- 1 | .\drvsetup uninstall -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/winmm_drv/src/winmm_drv.def: -------------------------------------------------------------------------------- 1 | LIBRARY opnmidisynth 2 | EXPORTS 3 | DriverProc 4 | modMessage 5 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/utils/wopn2hpp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_executable(wopn2hpp wopn2hpp.c) 2 | install(TARGETS wopn2hpp RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}") 3 | 4 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/windows/framework.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 4 | -------------------------------------------------------------------------------- /3rdParty/libOPNMIDI/windows/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/libOPNMIDI/windows/unistd.h -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_alsadrv/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | xmt32 3 | mt32d 4 | -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/TODO.txt: -------------------------------------------------------------------------------- 1 | - RTP MIDI driver hopefully with full Bonjour support. 2 | - Context help 3 | - Code refactoring 4 | - Adding comments 5 | -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/128x128/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/128x128/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/16x16/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/16x16/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/24x24/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/24x24/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/256x256/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/256x256/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/32x32/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/32x32/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/48x48/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/48x48/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/64x64/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/64x64/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/72x72/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/72x72/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/res/icons/96x96/munt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/res/icons/96x96/munt.png -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/src/images/Details.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/src/images/Details.gif -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/src/images/DetailsHide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/src/images/DetailsHide.gif -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/src/images/Icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/src/images/Icon.gif -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/src/images/LCDOff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/src/images/LCDOff.gif -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/src/images/LCDOn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/src/images/LCDOn.gif -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_qt/src/images/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/munt/mt32emu_qt/src/images/Refresh.gif -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_smf2wav/libsmf/src/config.h.in: -------------------------------------------------------------------------------- 1 | #define PACKAGE_VERSION "@libsmf_VERSION_MAJOR@.@libsmf_VERSION_MINOR@" 2 | -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_win32drv/src/winmm_drv.def: -------------------------------------------------------------------------------- 1 | LIBRARY mt32emu 2 | EXPORTS 3 | DriverProc 4 | modMessage 5 | -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_win32drv_setup/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12) 2 | project(mt32emu_win32drv_setup) 3 | 4 | if(NOT CMAKE_CL_64) 5 | add_subdirectory(drvsetup) 6 | endif() 7 | add_subdirectory(infinstall) 8 | -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_win32drv_setup/drvsetup/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /3rdParty/munt/mt32emu_win32drv_setup/infinstall/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /3rdParty/sdl2/docs/README-hg.md: -------------------------------------------------------------------------------- 1 | We are no longer hosted in Mercurial. Please see README-git.md for details. 2 | 3 | Thanks! 4 | 5 | -------------------------------------------------------------------------------- /3rdParty/vstsdk/artwork/VSTLogoAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/artwork/VSTLogoAlpha.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/artwork/VSTLogoBlack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/artwork/VSTLogoBlack.jpg -------------------------------------------------------------------------------- /3rdParty/vstsdk/artwork/VSTLogoWhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/artwork/VSTLogoWhite.jpg -------------------------------------------------------------------------------- /3rdParty/vstsdk/artwork/VST_Logo_Usage_Guideline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/artwork/VST_Logo_Usage_Guideline.pdf -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/gfx/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/gfx/folder.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/gfx/mac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/gfx/mac.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/gfx/vstpluglogo_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/gfx/vstpluglogo_small.jpg -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/gfx/win.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/gfx/win.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/Blocksizechange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/Blocksizechange.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ControlChanged.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ControlChanged.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/IOchange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/IOchange.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/Initialisation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/Initialisation.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/Offlineprocessing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/Offlineprocessing.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/Sampleratechange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/Sampleratechange.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/SpeakerarrangementnegotiationforVSTfx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/SpeakerarrangementnegotiationforVSTfx.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/Termination.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/Termination.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/TurnOff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/TurnOff.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/TurnOn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/TurnOn.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/aeffect_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/aeffect_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/aeffectx_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/aeffectx_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/aeffeditor_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/aeffeditor_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/annotated.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/audioeffect_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/audioeffect_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/audioeffect_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/audioeffect_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/audioeffectx_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/audioeffectx_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/audioeffectx_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/audioeffectx_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_a_eff_editor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_a_eff_editor-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_a_eff_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_a_eff_editor.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_audio_effect-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_audio_effect-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_audio_effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_audio_effect.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_audio_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_audio_effect.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_audio_effect_x-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_audio_effect_x-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_audio_effect_x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_audio_effect_x.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/class_audio_effect_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/class_audio_effect_x.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/deprecated.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/dir_2d3252dd12c84c66c1d25b26bb45a1f5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/dir_2d3252dd12c84c66c1d25b26bb45a1f5.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/dir_77c628dfee72e555f82d5ef53b733f38.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/dir_77c628dfee72e555f82d5ef53b733f38.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/dir_f81105d3b854bea570aaf3bae5cb64c1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/dir_f81105d3b854bea570aaf3bae5cb64c1.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/dir_fa0454ab79b4262333bf837ea3d765e9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/dir_fa0454ab79b4262333bf837ea3d765e9.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/dirs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/dirs.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/doc_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/doc_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/doxygen.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/files.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2blank.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2doc.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2folderopen.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2lastnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2link.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2mnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2node.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2plastnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2pnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/ftv2vertline.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x62.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x63.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x64.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x65.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x66.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x67.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x68.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x69.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x6b.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x6c.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x6d.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x6e.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x6f.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x70.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x72.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x73.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x74.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x75.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x76.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x77.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x78.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x78.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x79.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x79.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_0x7e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_0x7e.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_func.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/functions_vars.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x62.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x63.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x64.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x65.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x66.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x6b.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x6d.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x74.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_0x76.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_defs.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_enum.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_eval.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_eval_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_eval_0x65.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_eval_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_eval_0x6b.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_eval_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_eval_0x6d.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_eval_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_eval_0x76.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_func.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_type.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/globals_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/globals_vars.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/hierarchy.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/history.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/intro.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/license.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/maceditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/maceditor.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/main.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/namespace_host_can_dos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/namespace_host_can_dos.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/namespace_plug_can_dos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/namespace_plug_can_dos.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/namespacemembers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/namespacemembers.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/namespacemembers_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/namespacemembers_vars.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/namespaces.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/others.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/pages.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/sequences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/sequences.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_a_effect-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_a_effect-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_a_effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_a_effect.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_e_rect-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_e_rect-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_e_rect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_e_rect.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_midi_key_name-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_midi_key_name-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_midi_key_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_midi_key_name.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_midi_program_category-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_midi_program_category-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_midi_program_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_midi_program_category.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_midi_program_name-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_midi_program_name-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_midi_program_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_midi_program_name.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_audio_file-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_audio_file-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_audio_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_audio_file.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_audio_file_marker-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_audio_file_marker-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_audio_file_marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_audio_file_marker.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_event-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_event-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_event.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_events-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_events-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_events.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_file_select-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_file_select-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_file_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_file_select.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_file_type-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_file_type-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_file_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_file_type.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_key_code-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_key_code-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_key_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_key_code.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_midi_event-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_midi_event-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_midi_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_midi_event.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_midi_sysex_event-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_midi_sysex_event-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_midi_sysex_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_midi_sysex_event.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_offline_task-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_offline_task-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_offline_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_offline_task.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_parameter_properties-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_parameter_properties-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_parameter_properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_parameter_properties.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_patch_chunk_info-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_patch_chunk_info-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_patch_chunk_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_patch_chunk_info.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_pin_properties-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_pin_properties-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_pin_properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_pin_properties.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_speaker_arrangement-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_speaker_arrangement-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_speaker_arrangement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_speaker_arrangement.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_speaker_properties-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_speaker_properties-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_speaker_properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_speaker_properties.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_time_info-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_time_info-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_time_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_time_info.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_variable_io-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_variable_io-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_variable_io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_variable_io.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_window-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_window-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/struct_vst_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/struct_vst_window.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/structfx_bank-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/structfx_bank-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/structfx_bank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/structfx_bank.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/structfx_program-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/structfx_program-members.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/structfx_program.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/structfx_program.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/tab_b.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/tab_l.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/tab_r.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/thanks.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/vstfxstore_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/vstfxstore_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/vstoffline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/vstoffline.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/vstparamstruct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/vstparamstruct.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/vstpluglogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/vstpluglogo.jpg -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/vstplugmain_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/vstplugmain_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/html/whatsnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/html/whatsnew.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/doc/sdk.overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/doc/sdk.overview.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/pluginterfaces/vst2.x/aeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/pluginterfaces/vst2.x/aeffect.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/pluginterfaces/vst2.x/aeffectx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/pluginterfaces/vst2.x/aeffectx.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/pluginterfaces/vst2.x/vstfxstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/pluginterfaces/vst2.x/vstfxstore.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/adelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/adelay.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/adelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/adelay.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/adelaymain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/adelaymain.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/editor/sdeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/editor/sdeditor.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/editor/sdeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/editor/sdeditor.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/surrounddelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/surrounddelay.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/surrounddelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/adelay/surrounddelay.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/again/source/again.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/again/source/again.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/again/source/again.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/again/source/again.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/minihost/source/minieditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/minihost/source/minieditor.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/minihost/source/minihost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/minihost/source/minihost.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.rc: -------------------------------------------------------------------------------- 1 | #define APSTUDIO_READONLY_SYMBOLS 2 | 3 | 1 VSTXML "vstxsynth.vstxml" -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/vstxsynth/source/gmnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/vstxsynth/source/gmnames.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/vstxsynth/source/vstxsynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/vstxsynth/source/vstxsynth.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/vstxsynth/source/vstxsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/samples/vst2.x/vstxsynth/source/vstxsynth.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/samples/vst2.x/win/vstplug.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | VSTPluginMain 3 | main=VSTPluginMain -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/source/vst2.x/aeffeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/source/vst2.x/aeffeditor.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffect.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffect.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffectx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffectx.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffectx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/source/vst2.x/audioeffectx.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/public.sdk/source/vst2.x/vstplugmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/public.sdk/source/vst2.x/vstplugmain.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/mac/audiounit.exp: -------------------------------------------------------------------------------- 1 | _DrawTestAUEntry 2 | _VSTGUIAUViewEntry -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/mac/cw_vst_prefix.pch++: -------------------------------------------------------------------------------- 1 | #include "vstplugsquartz.h" 2 | 3 | #include 4 | #include "vstgui.h" 5 | -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/mac/drawtest.cw9prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/mac/drawtest.cw9prj -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/mac/drawtest.plc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/mac/drawtest.plc -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/mac/xcode_vst_prefix.h: -------------------------------------------------------------------------------- 1 | #include "vstplugsquartz.h" 2 | 3 | #include 4 | #include "vstgui.h" 5 | -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp00001.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp00100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp00100.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp01000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp01000.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10001.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10002.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10003.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10004.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10004.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10005.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10005.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10006.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10006.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10007.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10007.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10008.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10008.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10009.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10009.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10010.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10010.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10011.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10011.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10012.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10012.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10013.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10013.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10014.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10014.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10015.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10015.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10016.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/drawtest/resources/bmp10016.bmp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/drawtest/win/drawtest.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | VSTPluginMain 3 | main=VSTPluginMain 4 | -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/aeffguieditor_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/aeffguieditor_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/aeffguieditor_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/aeffguieditor_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/annotated.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cfileselector_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cfileselector_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cfileselector_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cfileselector_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_anim_knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_anim_knob.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_bitmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_bitmap.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_bitmap.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_c_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_c_view.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_control.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_control.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_frame.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_frame.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_knob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_knob.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_knob.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_scrollbar.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_slider.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_slider.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_tab_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_tab_view.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_tab_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_tab_view.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_text_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_text_edit.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_view.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_view.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_vu_meter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_vu_meter.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_vu_meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/class_c_vu_meter.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cscrollview_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cscrollview_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cscrollview_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/cscrollview_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ctabview_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ctabview_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ctabview_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ctabview_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/deprecated.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/doc_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/doc_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/doxygen.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/files.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2blank.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2doc.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2folderopen.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2lastnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2link.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2mnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2node.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2plastnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2pnode.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/ftv2vertline.png -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x62.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x63.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x64.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x65.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x66.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x67.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x68.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x69.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6b.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6c.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6d.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6e.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x6f.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x70.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x72.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x73.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x74.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x75.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x76.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x77.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x78.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x78.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x79.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x79.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x7a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x7a.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x7e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_0x7e.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_eval.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_func.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_rela.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_rela.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/functions_vars.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x61.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x62.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x63.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x65.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x66.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x67.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6b.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6d.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6e.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x6f.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x71.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x72.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x73.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x74.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x75.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x76.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_0x77.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_defs.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_enum.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_eval.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_type.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/globals_vars.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/hierarchy.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/intro.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/license.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/maceditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/maceditor.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/main.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/others.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/others.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/pages.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/plugguieditor_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/plugguieditor_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/sequences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/sequences.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_c_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_c_color.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_c_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_c_point.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_c_rect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_c_rect.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_e_rect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/struct_e_rect.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/tab_b.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/tab_l.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/tab_r.gif -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/thanks.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstcontrols_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstcontrols_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstcontrols_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstcontrols_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstgui_8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstgui_8cpp.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstgui_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstgui_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstkeycode_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstkeycode_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstoffline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstoffline.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstparamstruct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstparamstruct.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstplugsmac_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstplugsmac_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstplugsmacho_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/vstplugsmacho_8h.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/whatsnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/Documentation/html/whatsnew.html -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/aeffguieditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/aeffguieditor.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/aeffguieditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/aeffguieditor.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/cfileselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/cfileselector.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/cfileselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/cfileselector.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/cscrollview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/cscrollview.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/cscrollview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/cscrollview.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/ctabview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/ctabview.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/ctabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/ctabview.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/plugguieditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/plugguieditor.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/plugguieditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/plugguieditor.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/vstcontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/vstcontrols.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/vstcontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/vstcontrols.h -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/vstgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/vstgui.cpp -------------------------------------------------------------------------------- /3rdParty/vstsdk/vstgui.sf/vstgui/vstgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/3rdParty/vstsdk/vstgui.sf/vstgui/vstgui.h -------------------------------------------------------------------------------- /Infrastructure/PreferencesHMILayout.h: -------------------------------------------------------------------------------- 1 | 2 | /** $VER: PreferencesHMILayout.h (2024.05.19) **/ 3 | 4 | #pragma once 5 | -------------------------------------------------------------------------------- /framework.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /patrons.h: -------------------------------------------------------------------------------- 1 | #ifndef PATRONS_H 2 | #define PATRONS_H 3 | 4 | #define KODE54_PATRONS \ 5 | "Thanks to my patrons:\n" \ 6 | "Joseph DeVore, Hongfei Gu\n" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /scpipe/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/scpipe/resource.h -------------------------------------------------------------------------------- /vsthost/vsthost.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuerp/foo_midi/53214f832253b345cda5740e54d84922d943d7d9/vsthost/vsthost.ico --------------------------------------------------------------------------------