gitextract_mpjqhbob/ ├── .gitignore ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── cJSON/ │ ├── LICENSE │ ├── Makefile.am │ ├── cJSON.c │ └── cJSON.h ├── configure.ac ├── doc/ │ ├── .gitignore │ ├── Makefile.am │ ├── cursynth.texi │ └── fdl.texi ├── mopo/ │ ├── .gitignore │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── configure.ac │ └── src/ │ ├── Makefile.am │ ├── delay.cpp │ ├── delay.h │ ├── envelope.cpp │ ├── envelope.h │ ├── feedback.cpp │ ├── feedback.h │ ├── filter.cpp │ ├── filter.h │ ├── linear_slope.cpp │ ├── linear_slope.h │ ├── memory.h │ ├── midi_lookup.cpp │ ├── midi_lookup.h │ ├── mono_panner.cpp │ ├── mono_panner.h │ ├── mopo.h │ ├── operators.cpp │ ├── operators.h │ ├── oscillator.cpp │ ├── oscillator.h │ ├── processor.cpp │ ├── processor.h │ ├── processor_router.cpp │ ├── processor_router.h │ ├── send_receive.cpp │ ├── send_receive.h │ ├── smooth_filter.cpp │ ├── smooth_filter.h │ ├── smooth_value.cpp │ ├── smooth_value.h │ ├── step_generator.cpp │ ├── step_generator.h │ ├── tick_router.h │ ├── trigger_operators.cpp │ ├── trigger_operators.h │ ├── utils.h │ ├── value.cpp │ ├── value.h │ ├── voice_handler.cpp │ ├── voice_handler.h │ ├── wave.cpp │ └── wave.h ├── patches/ │ ├── bit_sin.mite │ ├── bwang.mite │ ├── default.mite │ ├── loaded_room.mite │ ├── test_patch1.mite │ ├── test_patch2.mite │ ├── water_wobble.mite │ ├── whistle.mite │ ├── whoooo.mite │ └── womp.mite ├── po/ │ ├── .gitignore │ ├── Makevars │ └── POTFILES.in ├── rtaudio/ │ ├── .gitignore │ ├── Makefile.am │ ├── RtAudio.cpp │ ├── RtAudio.h │ ├── RtError.h │ ├── configure.ac │ ├── contrib/ │ │ └── python/ │ │ └── pyrtaudio/ │ │ ├── PyRtAudioTest.py │ │ ├── readme │ │ ├── rtaudiomodule.cpp │ │ └── setup.py │ ├── include/ │ │ ├── asio.cpp │ │ ├── asio.h │ │ ├── asiodrivers.cpp │ │ ├── asiodrivers.h │ │ ├── asiodrvr.h │ │ ├── asiolist.cpp │ │ ├── asiolist.h │ │ ├── asiosys.h │ │ ├── dsound.h │ │ ├── ginclude.h │ │ ├── iasiodrv.h │ │ ├── iasiothiscallresolver.cpp │ │ ├── iasiothiscallresolver.h │ │ └── soundcard.h │ ├── install │ ├── librtaudio.pc.in │ ├── readme │ ├── rtaudio-config.in │ └── tests/ │ ├── Windows/ │ │ ├── audioprobe.dsp │ │ ├── duplex.dsp │ │ ├── playraw.dsp │ │ ├── playsaw.dsp │ │ ├── record.dsp │ │ ├── rtaudio.dsw │ │ ├── testall.dsp │ │ └── teststops.dsp │ ├── audioprobe.cpp │ ├── duplex.cpp │ ├── playraw.cpp │ ├── playsaw.cpp │ ├── record.cpp │ ├── testall.cpp │ └── teststops.cpp ├── rtmidi/ │ ├── .gitignore │ ├── Makefile.am │ ├── RtError.h │ ├── RtMidi.cpp │ ├── RtMidi.h │ ├── configure.ac │ ├── include/ │ │ ├── ks.h │ │ └── ksmedia.h │ ├── msw/ │ │ ├── readme │ │ ├── rtmidilib.sln │ │ └── rtmidilib.vcproj │ ├── readme │ ├── rtmidi-config.in │ └── tests/ │ ├── RtMidi.dsw │ ├── cmidiin.cpp │ ├── cmidiin.dsp │ ├── midiout.cpp │ ├── midiout.dsp │ ├── midiprobe.cpp │ ├── midiprobe.dsp │ ├── qmidiin.cpp │ ├── qmidiin.dsp │ ├── sysextest.cpp │ └── sysextest.dsp └── src/ ├── Makefile.am ├── cursynth.cpp ├── cursynth.h ├── cursynth_common.h ├── cursynth_engine.cpp ├── cursynth_engine.h ├── cursynth_gui.cpp ├── cursynth_gui.h ├── cursynth_strings.cpp ├── cursynth_strings.h └── main.cpp