├── .gitignore ├── README.md ├── Visual Studio ├── MyReaperPlugin.rc_mac_dlg ├── MyReaperPlugin.rc_mac_menu ├── MyReaperPlugin.sln ├── MyReaperPlugin.vcxproj ├── MyReaperPlugin.vcxproj.filters ├── MyReaperPlugin.vcxproj.user └── resource.h ├── Xcode └── MyReaperPlugin.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── reaper_SamplerExtension.xcscmblueprint │ └── xcshareddata │ └── xcschemes │ ├── Debug.xcscheme │ └── Release.xcscheme ├── header ├── MyFirstClass.hpp ├── envelope_model.h ├── lice_control.h ├── mrp_audioaccessor.h ├── mrp_pcm_source.h ├── mrpexamplewindows.h ├── mrpwincontrols.h ├── mrpwindows.h ├── mylicecontrols.h ├── reaper_action_helper.h ├── reaper_function_helper.h ├── reascriptgui.h ├── utilfuncs.h └── xendynamicsprocessor.h ├── library ├── WDL │ └── WDL │ │ ├── .gitattributes │ │ ├── MersenneTwister.h │ │ ├── adpcm_decode.h │ │ ├── adpcm_encode.h │ │ ├── assocarray.h │ │ ├── audiobuffercontainer.cpp │ │ ├── audiobuffercontainer.h │ │ ├── bitfield.h │ │ ├── blowfish.c │ │ ├── blowfish.h │ │ ├── chunkalloc.h │ │ ├── circbuf.h │ │ ├── cmath │ │ ├── bessel_polynomial.h │ │ ├── complex_number.h │ │ ├── custom_math.h │ │ ├── durand_kerner.h │ │ ├── factorial.h │ │ ├── horner.h │ │ ├── test_bessel.c │ │ └── test_eval.c │ │ ├── convoengine.cpp │ │ ├── convoengine.h │ │ ├── db2val.h │ │ ├── denormal.h │ │ ├── des.cpp │ │ ├── des.h │ │ ├── destroycheck.h │ │ ├── dirscan.h │ │ ├── eel2 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── a2i.php │ │ ├── a2x64.php │ │ ├── asm-nseel-ppc-gcc.c │ │ ├── asm-nseel-x64-macho.o │ │ ├── asm-nseel-x64.obj │ │ ├── asm-nseel-x86-gcc.c │ │ ├── asm-nseel-x86-msvc.c │ │ ├── eel2.l │ │ ├── eel2.vim │ │ ├── eel2.y │ │ ├── eel_atomic.h │ │ ├── eel_eval.h │ │ ├── eel_fft.h │ │ ├── eel_files.h │ │ ├── eel_lice.h │ │ ├── eel_mdct.h │ │ ├── eel_misc.h │ │ ├── eel_net.h │ │ ├── eel_strings.h │ │ ├── eelscript.h │ │ ├── gen-lex-yacc │ │ ├── glue_port.h │ │ ├── glue_ppc.h │ │ ├── glue_x86.h │ │ ├── glue_x86_64.h │ │ ├── loose_eel.cpp │ │ ├── loose_eel.dsp │ │ ├── loose_eel.dsw │ │ ├── loose_eel.sln │ │ ├── loose_eel.vcxproj │ │ ├── loose_eel.vcxproj.filters │ │ ├── makefile.vc │ │ ├── ns-eel-addfuncs.h │ │ ├── ns-eel-func-ref.h │ │ ├── ns-eel-int.h │ │ ├── ns-eel.h │ │ ├── nseel-caltab.c │ │ ├── nseel-cfunc.c │ │ ├── nseel-compiler.c │ │ ├── nseel-eval.c │ │ ├── nseel-lextab.c │ │ ├── nseel-ram.c │ │ ├── nseel-yylex.c │ │ ├── scripts │ │ │ ├── circle.eel │ │ │ ├── eval_test.eel │ │ │ ├── gfx_test.eel │ │ │ ├── gfx_test_defer.eel │ │ │ ├── httpd.eel │ │ │ ├── sinewave_text.eel │ │ │ └── space.eel │ │ ├── y.tab.c │ │ └── y.tab.h │ │ ├── fastqueue.h │ │ ├── ffmpeg.h │ │ ├── fft.c │ │ ├── fft.h │ │ ├── filebrowse.cpp │ │ ├── filebrowse.h │ │ ├── filename.h │ │ ├── fileread.h │ │ ├── filewrite.h │ │ ├── fnv64.h │ │ ├── giflib │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── DEVELOPERS │ │ ├── README │ │ ├── config.h │ │ ├── dgif_lib.c │ │ ├── egif_lib.c │ │ ├── gif_hash.c │ │ ├── gif_hash.h │ │ ├── gif_lib.h │ │ ├── gif_lib_private.h │ │ └── gifalloc.c │ │ ├── gpu │ │ ├── gpu.cpp │ │ ├── gpu.h │ │ └── wglext.h │ │ ├── heapbuf.h │ │ ├── history.txt │ │ ├── jnetlib │ │ ├── Makefile │ │ ├── asyncdns.cpp │ │ ├── asyncdns.h │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── httpget.cpp │ │ ├── httpget.h │ │ ├── httpserv.cpp │ │ ├── httpserv.h │ │ ├── irc_util.h │ │ ├── jnetlib.h │ │ ├── listen.cpp │ │ ├── listen.h │ │ ├── netinc.h │ │ ├── test.cpp │ │ ├── test.dsp │ │ ├── test.dsw │ │ ├── testbnc.cpp │ │ ├── util.cpp │ │ ├── util.h │ │ ├── webserver.cpp │ │ └── webserver.h │ │ ├── jpeglib │ │ ├── README │ │ ├── example.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jchuff.h │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcphuff.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdhuff.h │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdphuff.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jidctred.c │ │ ├── jinclude.h │ │ ├── jmemmgr.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ └── jversion.h │ │ ├── lameencdec.cpp │ │ ├── lameencdec.h │ │ ├── libpng │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pnglibconf.h.prebuilt │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtest.c │ │ ├── pngtrans.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c │ │ ├── lice │ │ ├── Makefile │ │ ├── glew │ │ │ ├── include │ │ │ │ └── GL │ │ │ │ │ ├── WGLEXT.H │ │ │ │ │ ├── glew.h │ │ │ │ │ ├── glxew.h │ │ │ │ │ └── wglew.h │ │ │ └── src │ │ │ │ ├── glew.c │ │ │ │ ├── glewinfo.c │ │ │ │ └── visualinfo.c │ │ ├── lice.cpp │ │ ├── lice.dsp │ │ ├── lice.dsw │ │ ├── lice.h │ │ ├── lice.vcxproj │ │ ├── lice_arc.cpp │ │ ├── lice_bezier.h │ │ ├── lice_bmp.cpp │ │ ├── lice_colorspace.cpp │ │ ├── lice_combine.h │ │ ├── lice_extended.h │ │ ├── lice_gif.cpp │ │ ├── lice_gif_write.cpp │ │ ├── lice_gl_ctx.cpp │ │ ├── lice_gl_ctx.h │ │ ├── lice_glbitmap.cpp │ │ ├── lice_glbitmap.h │ │ ├── lice_ico.cpp │ │ ├── lice_image.cpp │ │ ├── lice_jpg.cpp │ │ ├── lice_jpg_write.cpp │ │ ├── lice_lcf.cpp │ │ ├── lice_lcf.h │ │ ├── lice_line.cpp │ │ ├── lice_lvg.cpp │ │ ├── lice_palette.cpp │ │ ├── lice_pcx.cpp │ │ ├── lice_png.cpp │ │ ├── lice_png_write.cpp │ │ ├── lice_svg.cpp │ │ ├── lice_texgen.cpp │ │ ├── lice_text.cpp │ │ ├── lice_text.h │ │ ├── lice_textnew.cpp │ │ ├── makedist.bat │ │ └── test │ │ │ ├── Controller.h │ │ │ ├── Controller.mm │ │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ ├── Info.plist │ │ │ ├── fly.cpp │ │ │ ├── image.png │ │ │ ├── imgs2gif.cpp │ │ │ ├── main.cpp │ │ │ ├── main.ico │ │ │ ├── main.m │ │ │ ├── resource.h │ │ │ ├── test.dsp │ │ │ ├── test.rc │ │ │ ├── test.sln │ │ │ ├── test.vcxproj │ │ │ ├── test.vcxproj.filters │ │ │ └── test.xcodeproj │ │ │ └── project.pbxproj │ │ ├── lineparse.h │ │ ├── makedist.bat │ │ ├── mergesort.h │ │ ├── mp3write.h │ │ ├── mutex.h │ │ ├── nsv │ │ ├── nsvbs.h │ │ ├── nsvlib.cpp │ │ └── nsvlib.h │ │ ├── pcmfmtcvt.h │ │ ├── plush2 │ │ ├── pl_cam.cpp │ │ ├── pl_make.cpp │ │ ├── pl_math.cpp │ │ ├── pl_obj.cpp │ │ ├── pl_pf_tex.h │ │ ├── pl_putface.cpp │ │ ├── pl_read_3ds.cpp │ │ ├── pl_read_cob.cpp │ │ ├── pl_read_jaw.cpp │ │ ├── pl_spline.cpp │ │ ├── plush.h │ │ └── plush2.dsp │ │ ├── poollist.h │ │ ├── projectcontext.cpp │ │ ├── projectcontext.h │ │ ├── ptrlist.h │ │ ├── queue.h │ │ ├── reminder.h │ │ ├── resample.cpp │ │ ├── resample.h │ │ ├── rfb_client.cpp │ │ ├── rfb_client.h │ │ ├── rng.cpp │ │ ├── rng.h │ │ ├── rpool.h │ │ ├── sc_bounce │ │ ├── index.html │ │ ├── stream-config.php │ │ └── stream.php │ │ ├── scsrc.cpp │ │ ├── scsrc.h │ │ ├── sha.cpp │ │ ├── sha.h │ │ ├── sharedpool.h │ │ ├── shm_connection.cpp │ │ ├── shm_connection.h │ │ ├── shm_msgreply.cpp │ │ ├── shm_msgreply.h │ │ ├── simple_pitchshift.h │ │ ├── simple_pitchshift2.h │ │ ├── sinewavegen.h │ │ ├── stringpool.h │ │ ├── swell │ │ ├── Makefile │ │ ├── commctrl.h │ │ ├── mac_resgen.php │ │ ├── make-libSwells.sh │ │ ├── sample_project │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── app_main.cpp │ │ │ ├── main.h │ │ │ ├── main.m │ │ │ ├── main_dialog.cpp │ │ │ ├── resource.h │ │ │ ├── sample_project.dsp │ │ │ ├── sample_project.dsw │ │ │ ├── sample_project.rc │ │ │ ├── sample_project.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ └── project.pbxproj │ │ │ ├── sample_project_Prefix.pch │ │ │ └── version.plist │ │ ├── shlobj.h │ │ ├── swell-appstub-generic.cpp │ │ ├── swell-appstub.mm │ │ ├── swell-dlg-generic.cpp │ │ ├── swell-dlg.mm │ │ ├── swell-dlggen.h │ │ ├── swell-functions.h │ │ ├── swell-gdi-generic.cpp │ │ ├── swell-gdi-internalpool.h │ │ ├── swell-gdi-lice.cpp │ │ ├── swell-gdi.mm │ │ ├── swell-ini.cpp │ │ ├── swell-internal.h │ │ ├── swell-kb-generic.cpp │ │ ├── swell-kb.mm │ │ ├── swell-menu-generic.cpp │ │ ├── swell-menu.mm │ │ ├── swell-menugen.h │ │ ├── swell-misc-generic.cpp │ │ ├── swell-misc.mm │ │ ├── swell-miscdlg-generic.cpp │ │ ├── swell-miscdlg-gtk.cpp │ │ ├── swell-miscdlg.mm │ │ ├── swell-modstub-generic.cpp │ │ ├── swell-modstub.mm │ │ ├── swell-types.h │ │ ├── swell-wnd-generic.cpp │ │ ├── swell-wnd.mm │ │ ├── swell.cpp │ │ ├── swell.h │ │ ├── swellappmain.h │ │ ├── swellappmain.mm │ │ ├── test-gtk.cpp │ │ ├── test.cpp │ │ └── windows.h │ │ ├── timing.c │ │ ├── timing.h │ │ ├── tinyxml │ │ ├── libxml_tinyxml.cpp │ │ ├── libxml_tinyxml.h │ │ ├── svgtiny_colors.c │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ │ ├── verbengine.h │ │ ├── vorbisencdec.h │ │ ├── wavwrite.h │ │ ├── wdlatomic.h │ │ ├── wdlcstring.h │ │ ├── wdlstring.h │ │ ├── wdltypes.h │ │ ├── wdlutf8.h │ │ ├── win32_curses │ │ ├── curses.h │ │ ├── curses_editor.cpp │ │ ├── curses_editor.h │ │ ├── curses_win32.cpp │ │ ├── eel_edit.cpp │ │ ├── eel_edit.h │ │ ├── multitab_edit.cpp │ │ ├── multitab_edit.h │ │ └── test.cpp │ │ ├── win32_helpers.h │ │ ├── win32_utf8.c │ │ ├── win32_utf8.h │ │ ├── win7filedialog.cpp │ │ ├── win7filedialog.h │ │ ├── wingui │ │ ├── dlgitemborder.h │ │ ├── membitmap.h │ │ ├── richeditctrl.h │ │ ├── scrollbar │ │ │ ├── coolscroll.cpp │ │ │ └── coolscroll.h │ │ ├── virtwnd-controls.h │ │ ├── virtwnd-iaccessible.cpp │ │ ├── virtwnd-iconbutton.cpp │ │ ├── virtwnd-listbox.cpp │ │ ├── virtwnd-nsaccessibility.mm │ │ ├── virtwnd-skin.h │ │ ├── virtwnd-slider.cpp │ │ ├── virtwnd.cpp │ │ ├── virtwnd.h │ │ ├── wndsize.cpp │ │ └── wndsize.h │ │ ├── xsrand.h │ │ └── zlib │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── 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 │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zconf.h │ │ ├── zip.c │ │ ├── zip.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── picojson │ └── picojson.h └── reaper_plugin │ ├── reaper_plugin.h │ └── reaper_plugin_functions.h ├── main.cpp ├── main.hpp ├── reascript.hpp ├── reascript └── lua │ ├── test_mrp_gui.lua │ └── unicode_test.lua └── source ├── MyFirstClass.cpp ├── lice_control.cpp ├── mrp_pcm_source.cpp ├── mrpexamplewindows.cpp ├── mrpwincontrols.cpp ├── mrpwindows.cpp ├── mylicecontrols.cpp ├── reaper_action_helper.cpp ├── reaper_function_helper.cpp ├── reascriptgui.cpp ├── utilfuncs.cpp └── xendynamicprocessor.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/README.md -------------------------------------------------------------------------------- /Visual Studio/MyReaperPlugin.rc_mac_dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Visual Studio/MyReaperPlugin.rc_mac_dlg -------------------------------------------------------------------------------- /Visual Studio/MyReaperPlugin.rc_mac_menu: -------------------------------------------------------------------------------- 1 | 2 | //EOF 3 | 4 | -------------------------------------------------------------------------------- /Visual Studio/MyReaperPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Visual Studio/MyReaperPlugin.sln -------------------------------------------------------------------------------- /Visual Studio/MyReaperPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Visual Studio/MyReaperPlugin.vcxproj -------------------------------------------------------------------------------- /Visual Studio/MyReaperPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Visual Studio/MyReaperPlugin.vcxproj.filters -------------------------------------------------------------------------------- /Visual Studio/MyReaperPlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Visual Studio/MyReaperPlugin.vcxproj.user -------------------------------------------------------------------------------- /Visual Studio/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Visual Studio/resource.h -------------------------------------------------------------------------------- /Xcode/MyReaperPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Xcode/MyReaperPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Xcode/MyReaperPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Xcode/MyReaperPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Xcode/MyReaperPlugin.xcodeproj/project.xcworkspace/xcshareddata/reaper_SamplerExtension.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Xcode/MyReaperPlugin.xcodeproj/project.xcworkspace/xcshareddata/reaper_SamplerExtension.xcscmblueprint -------------------------------------------------------------------------------- /Xcode/MyReaperPlugin.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Xcode/MyReaperPlugin.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme -------------------------------------------------------------------------------- /Xcode/MyReaperPlugin.xcodeproj/xcshareddata/xcschemes/Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/Xcode/MyReaperPlugin.xcodeproj/xcshareddata/xcschemes/Release.xcscheme -------------------------------------------------------------------------------- /header/MyFirstClass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/MyFirstClass.hpp -------------------------------------------------------------------------------- /header/envelope_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/envelope_model.h -------------------------------------------------------------------------------- /header/lice_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/lice_control.h -------------------------------------------------------------------------------- /header/mrp_audioaccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/mrp_audioaccessor.h -------------------------------------------------------------------------------- /header/mrp_pcm_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/mrp_pcm_source.h -------------------------------------------------------------------------------- /header/mrpexamplewindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/mrpexamplewindows.h -------------------------------------------------------------------------------- /header/mrpwincontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/mrpwincontrols.h -------------------------------------------------------------------------------- /header/mrpwindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/mrpwindows.h -------------------------------------------------------------------------------- /header/mylicecontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/mylicecontrols.h -------------------------------------------------------------------------------- /header/reaper_action_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/reaper_action_helper.h -------------------------------------------------------------------------------- /header/reaper_function_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/reaper_function_helper.h -------------------------------------------------------------------------------- /header/reascriptgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/reascriptgui.h -------------------------------------------------------------------------------- /header/utilfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/utilfuncs.h -------------------------------------------------------------------------------- /header/xendynamicsprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/header/xendynamicsprocessor.h -------------------------------------------------------------------------------- /library/WDL/WDL/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/.gitattributes -------------------------------------------------------------------------------- /library/WDL/WDL/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/MersenneTwister.h -------------------------------------------------------------------------------- /library/WDL/WDL/adpcm_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/adpcm_decode.h -------------------------------------------------------------------------------- /library/WDL/WDL/adpcm_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/adpcm_encode.h -------------------------------------------------------------------------------- /library/WDL/WDL/assocarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/assocarray.h -------------------------------------------------------------------------------- /library/WDL/WDL/audiobuffercontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/audiobuffercontainer.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/audiobuffercontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/audiobuffercontainer.h -------------------------------------------------------------------------------- /library/WDL/WDL/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/bitfield.h -------------------------------------------------------------------------------- /library/WDL/WDL/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/blowfish.c -------------------------------------------------------------------------------- /library/WDL/WDL/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/blowfish.h -------------------------------------------------------------------------------- /library/WDL/WDL/chunkalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/chunkalloc.h -------------------------------------------------------------------------------- /library/WDL/WDL/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/circbuf.h -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/bessel_polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/bessel_polynomial.h -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/complex_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/complex_number.h -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/custom_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/custom_math.h -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/durand_kerner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/durand_kerner.h -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/factorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/factorial.h -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/horner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/horner.h -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/test_bessel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/test_bessel.c -------------------------------------------------------------------------------- /library/WDL/WDL/cmath/test_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/cmath/test_eval.c -------------------------------------------------------------------------------- /library/WDL/WDL/convoengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/convoengine.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/convoengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/convoengine.h -------------------------------------------------------------------------------- /library/WDL/WDL/db2val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/db2val.h -------------------------------------------------------------------------------- /library/WDL/WDL/denormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/denormal.h -------------------------------------------------------------------------------- /library/WDL/WDL/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/des.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/des.h -------------------------------------------------------------------------------- /library/WDL/WDL/destroycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/destroycheck.h -------------------------------------------------------------------------------- /library/WDL/WDL/dirscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/dirscan.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/.gitignore -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/Makefile -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/a2i.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/a2i.php -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/a2x64.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/a2x64.php -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/asm-nseel-ppc-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/asm-nseel-ppc-gcc.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/asm-nseel-x64-macho.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/asm-nseel-x64-macho.o -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/asm-nseel-x64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/asm-nseel-x64.obj -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/asm-nseel-x86-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/asm-nseel-x86-gcc.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/asm-nseel-x86-msvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/asm-nseel-x86-msvc.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel2.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel2.l -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel2.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel2.vim -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel2.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel2.y -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_atomic.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_eval.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_fft.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_files.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_lice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_lice.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_mdct.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_misc.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_net.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eel_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eel_strings.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/eelscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/eelscript.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/gen-lex-yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/gen-lex-yacc -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/glue_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/glue_port.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/glue_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/glue_ppc.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/glue_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/glue_x86.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/glue_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/glue_x86_64.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/loose_eel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/loose_eel.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/loose_eel.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/loose_eel.dsp -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/loose_eel.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/loose_eel.dsw -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/loose_eel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/loose_eel.sln -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/loose_eel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/loose_eel.vcxproj -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/loose_eel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/loose_eel.vcxproj.filters -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/makefile.vc -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/ns-eel-addfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/ns-eel-addfuncs.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/ns-eel-func-ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/ns-eel-func-ref.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/ns-eel-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/ns-eel-int.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/ns-eel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/ns-eel.h -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/nseel-caltab.c: -------------------------------------------------------------------------------- 1 | // no longer used -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/nseel-cfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/nseel-cfunc.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/nseel-compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/nseel-compiler.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/nseel-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/nseel-eval.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/nseel-lextab.c: -------------------------------------------------------------------------------- 1 | // no longer used -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/nseel-ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/nseel-ram.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/nseel-yylex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/nseel-yylex.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/scripts/circle.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/scripts/circle.eel -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/scripts/eval_test.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/scripts/eval_test.eel -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/scripts/gfx_test.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/scripts/gfx_test.eel -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/scripts/gfx_test_defer.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/scripts/gfx_test_defer.eel -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/scripts/httpd.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/scripts/httpd.eel -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/scripts/sinewave_text.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/scripts/sinewave_text.eel -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/scripts/space.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/scripts/space.eel -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/y.tab.c -------------------------------------------------------------------------------- /library/WDL/WDL/eel2/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/eel2/y.tab.h -------------------------------------------------------------------------------- /library/WDL/WDL/fastqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/fastqueue.h -------------------------------------------------------------------------------- /library/WDL/WDL/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/ffmpeg.h -------------------------------------------------------------------------------- /library/WDL/WDL/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/fft.c -------------------------------------------------------------------------------- /library/WDL/WDL/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/fft.h -------------------------------------------------------------------------------- /library/WDL/WDL/filebrowse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/filebrowse.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/filebrowse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/filebrowse.h -------------------------------------------------------------------------------- /library/WDL/WDL/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/filename.h -------------------------------------------------------------------------------- /library/WDL/WDL/fileread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/fileread.h -------------------------------------------------------------------------------- /library/WDL/WDL/filewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/filewrite.h -------------------------------------------------------------------------------- /library/WDL/WDL/fnv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/fnv64.h -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/AUTHORS -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/COPYING -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/ChangeLog -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/DEVELOPERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/DEVELOPERS -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/README -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/config.h -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/dgif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/dgif_lib.c -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/egif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/egif_lib.c -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/gif_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/gif_hash.c -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/gif_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/gif_hash.h -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/gif_lib.h -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/gif_lib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/gif_lib_private.h -------------------------------------------------------------------------------- /library/WDL/WDL/giflib/gifalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/giflib/gifalloc.c -------------------------------------------------------------------------------- /library/WDL/WDL/gpu/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/gpu/gpu.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/gpu/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/gpu/gpu.h -------------------------------------------------------------------------------- /library/WDL/WDL/gpu/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/gpu/wglext.h -------------------------------------------------------------------------------- /library/WDL/WDL/heapbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/heapbuf.h -------------------------------------------------------------------------------- /library/WDL/WDL/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/history.txt -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/Makefile -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/asyncdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/asyncdns.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/asyncdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/asyncdns.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/connection.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/connection.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/httpget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/httpget.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/httpget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/httpget.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/httpserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/httpserv.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/httpserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/httpserv.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/irc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/irc_util.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/jnetlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/jnetlib.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/listen.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/listen.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/netinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/netinc.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/test.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/test.dsp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/test.dsw -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/testbnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/testbnc.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/util.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/util.h -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/webserver.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/jnetlib/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jnetlib/webserver.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/README -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/example.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcapimin.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcapistd.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jccoefct.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jccolor.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcdctmgr.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jchuff.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jchuff.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcinit.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcmainct.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcmarker.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcmaster.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcomapi.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jconfig.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcparam.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcphuff.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcprepct.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jcsample.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jctrans.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdapimin.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdapistd.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdatadst.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdatasrc.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdcoefct.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdcolor.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdct.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jddctmgr.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdhuff.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdhuff.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdinput.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdmainct.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdmarker.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdmaster.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdmerge.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdphuff.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdpostct.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdsample.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jdtrans.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jerror.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jerror.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jfdctflt.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jfdctfst.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jfdctint.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jidctflt.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jidctfst.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jidctint.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jidctred.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jinclude.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jmemmgr.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jmemnobs.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jmemsys.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jmorecfg.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jpegint.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jpeglib.h -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jquant1.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jquant2.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jutils.c -------------------------------------------------------------------------------- /library/WDL/WDL/jpeglib/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/jpeglib/jversion.h -------------------------------------------------------------------------------- /library/WDL/WDL/lameencdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lameencdec.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lameencdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lameencdec.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/CHANGES -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/LICENSE -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/README -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/png.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/png.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngconf.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngdebug.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngerror.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngget.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pnginfo.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pnglibconf.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pnglibconf.h.prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pnglibconf.h.prebuilt -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngmem.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngpread.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngpriv.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngread.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngrio.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngrtran.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngrutil.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngset.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngstruct.h -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngtest.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngtrans.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngwio.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngwrite.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngwtran.c -------------------------------------------------------------------------------- /library/WDL/WDL/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/libpng/pngwutil.c -------------------------------------------------------------------------------- /library/WDL/WDL/lice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/Makefile -------------------------------------------------------------------------------- /library/WDL/WDL/lice/glew/include/GL/WGLEXT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/glew/include/GL/WGLEXT.H -------------------------------------------------------------------------------- /library/WDL/WDL/lice/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/glew/include/GL/glew.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/glew/src/glew.c -------------------------------------------------------------------------------- /library/WDL/WDL/lice/glew/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/glew/src/glewinfo.c -------------------------------------------------------------------------------- /library/WDL/WDL/lice/glew/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/glew/src/visualinfo.c -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice.dsp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice.dsw -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice.vcxproj -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_arc.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_bezier.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_bmp.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_colorspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_colorspace.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_combine.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_extended.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_gif.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_gif_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_gif_write.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_gl_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_gl_ctx.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_gl_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_gl_ctx.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_glbitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_glbitmap.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_glbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_glbitmap.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_ico.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_ico.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_image.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_jpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_jpg.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_jpg_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_jpg_write.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_lcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_lcf.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_lcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_lcf.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_line.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_lvg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_lvg.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_palette.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_pcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_pcx.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_png.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_png_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_png_write.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_svg.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_texgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_texgen.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_text.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_text.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/lice_textnew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/lice_textnew.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/makedist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/makedist.bat -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/Controller.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/Controller.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/Controller.mm -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/Info.plist -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/fly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/fly.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/image.png -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/imgs2gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/imgs2gif.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/main.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/main.ico -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/main.m -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/resource.h -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/test.dsp -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/test.rc -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/test.sln -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/test.vcxproj -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/test.vcxproj.filters -------------------------------------------------------------------------------- /library/WDL/WDL/lice/test/test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lice/test/test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /library/WDL/WDL/lineparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/lineparse.h -------------------------------------------------------------------------------- /library/WDL/WDL/makedist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/makedist.bat -------------------------------------------------------------------------------- /library/WDL/WDL/mergesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/mergesort.h -------------------------------------------------------------------------------- /library/WDL/WDL/mp3write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/mp3write.h -------------------------------------------------------------------------------- /library/WDL/WDL/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/mutex.h -------------------------------------------------------------------------------- /library/WDL/WDL/nsv/nsvbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/nsv/nsvbs.h -------------------------------------------------------------------------------- /library/WDL/WDL/nsv/nsvlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/nsv/nsvlib.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/nsv/nsvlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/nsv/nsvlib.h -------------------------------------------------------------------------------- /library/WDL/WDL/pcmfmtcvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/pcmfmtcvt.h -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_cam.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_make.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_make.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_math.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_obj.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_pf_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_pf_tex.h -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_putface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_putface.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_read_3ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_read_3ds.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_read_cob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_read_cob.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_read_jaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_read_jaw.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/pl_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/pl_spline.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/plush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/plush.h -------------------------------------------------------------------------------- /library/WDL/WDL/plush2/plush2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/plush2/plush2.dsp -------------------------------------------------------------------------------- /library/WDL/WDL/poollist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/poollist.h -------------------------------------------------------------------------------- /library/WDL/WDL/projectcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/projectcontext.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/projectcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/projectcontext.h -------------------------------------------------------------------------------- /library/WDL/WDL/ptrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/ptrlist.h -------------------------------------------------------------------------------- /library/WDL/WDL/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/queue.h -------------------------------------------------------------------------------- /library/WDL/WDL/reminder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/reminder.h -------------------------------------------------------------------------------- /library/WDL/WDL/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/resample.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/resample.h -------------------------------------------------------------------------------- /library/WDL/WDL/rfb_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/rfb_client.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/rfb_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/rfb_client.h -------------------------------------------------------------------------------- /library/WDL/WDL/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/rng.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/rng.h -------------------------------------------------------------------------------- /library/WDL/WDL/rpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/rpool.h -------------------------------------------------------------------------------- /library/WDL/WDL/sc_bounce/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/sc_bounce/index.html -------------------------------------------------------------------------------- /library/WDL/WDL/sc_bounce/stream-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/sc_bounce/stream-config.php -------------------------------------------------------------------------------- /library/WDL/WDL/sc_bounce/stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/sc_bounce/stream.php -------------------------------------------------------------------------------- /library/WDL/WDL/scsrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/scsrc.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/scsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/scsrc.h -------------------------------------------------------------------------------- /library/WDL/WDL/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/sha.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/sha.h -------------------------------------------------------------------------------- /library/WDL/WDL/sharedpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/sharedpool.h -------------------------------------------------------------------------------- /library/WDL/WDL/shm_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/shm_connection.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/shm_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/shm_connection.h -------------------------------------------------------------------------------- /library/WDL/WDL/shm_msgreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/shm_msgreply.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/shm_msgreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/shm_msgreply.h -------------------------------------------------------------------------------- /library/WDL/WDL/simple_pitchshift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/simple_pitchshift.h -------------------------------------------------------------------------------- /library/WDL/WDL/simple_pitchshift2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/simple_pitchshift2.h -------------------------------------------------------------------------------- /library/WDL/WDL/sinewavegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/sinewavegen.h -------------------------------------------------------------------------------- /library/WDL/WDL/stringpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/stringpool.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/Makefile -------------------------------------------------------------------------------- /library/WDL/WDL/swell/commctrl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /library/WDL/WDL/swell/mac_resgen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/mac_resgen.php -------------------------------------------------------------------------------- /library/WDL/WDL/swell/make-libSwells.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/make-libSwells.sh -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/Info.plist -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/app_main.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/main.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/main.m -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/main_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/main_dialog.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/resource.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/sample_project.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/sample_project.dsp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/sample_project.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/sample_project.dsw -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/sample_project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/sample_project.rc -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/sample_project.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/sample_project.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/sample_project.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/sample_project.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/sample_project_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/sample_project_Prefix.pch -------------------------------------------------------------------------------- /library/WDL/WDL/swell/sample_project/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/sample_project/version.plist -------------------------------------------------------------------------------- /library/WDL/WDL/swell/shlobj.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-appstub-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-appstub-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-appstub.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-appstub.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-dlg-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-dlg-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-dlg.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-dlg.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-dlggen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-dlggen.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-functions.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-gdi-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-gdi-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-gdi-internalpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-gdi-internalpool.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-gdi-lice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-gdi-lice.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-gdi.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-gdi.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-ini.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-internal.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-kb-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-kb-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-kb.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-kb.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-menu-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-menu-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-menu.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-menugen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-menugen.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-misc-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-misc-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-misc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-misc.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-miscdlg-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-miscdlg-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-miscdlg-gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-miscdlg-gtk.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-miscdlg.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-miscdlg.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-modstub-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-modstub-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-modstub.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-modstub.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-types.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-wnd-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-wnd-generic.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell-wnd.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell-wnd.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swell.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swellappmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swellappmain.h -------------------------------------------------------------------------------- /library/WDL/WDL/swell/swellappmain.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/swellappmain.mm -------------------------------------------------------------------------------- /library/WDL/WDL/swell/test-gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/test-gtk.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/swell/test.cpp: -------------------------------------------------------------------------------- 1 | #include "swell.h" 2 | 3 | int main() 4 | { 5 | MessageBox(NULL,"hello world","a",0); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /library/WDL/WDL/swell/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/swell/windows.h -------------------------------------------------------------------------------- /library/WDL/WDL/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/timing.c -------------------------------------------------------------------------------- /library/WDL/WDL/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/timing.h -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/libxml_tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/libxml_tinyxml.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/libxml_tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/libxml_tinyxml.h -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/svgtiny_colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/svgtiny_colors.c -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/tinystr.h -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/verbengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/verbengine.h -------------------------------------------------------------------------------- /library/WDL/WDL/vorbisencdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/vorbisencdec.h -------------------------------------------------------------------------------- /library/WDL/WDL/wavwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wavwrite.h -------------------------------------------------------------------------------- /library/WDL/WDL/wdlatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wdlatomic.h -------------------------------------------------------------------------------- /library/WDL/WDL/wdlcstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wdlcstring.h -------------------------------------------------------------------------------- /library/WDL/WDL/wdlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wdlstring.h -------------------------------------------------------------------------------- /library/WDL/WDL/wdltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wdltypes.h -------------------------------------------------------------------------------- /library/WDL/WDL/wdlutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wdlutf8.h -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/curses.h -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/curses_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/curses_editor.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/curses_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/curses_editor.h -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/curses_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/curses_win32.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/eel_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/eel_edit.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/eel_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/eel_edit.h -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/multitab_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/multitab_edit.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/multitab_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/multitab_edit.h -------------------------------------------------------------------------------- /library/WDL/WDL/win32_curses/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_curses/test.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/win32_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_helpers.h -------------------------------------------------------------------------------- /library/WDL/WDL/win32_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_utf8.c -------------------------------------------------------------------------------- /library/WDL/WDL/win32_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win32_utf8.h -------------------------------------------------------------------------------- /library/WDL/WDL/win7filedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win7filedialog.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/win7filedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/win7filedialog.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/dlgitemborder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/dlgitemborder.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/membitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/membitmap.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/richeditctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/richeditctrl.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/scrollbar/coolscroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/scrollbar/coolscroll.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/scrollbar/coolscroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/scrollbar/coolscroll.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd-controls.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd-iaccessible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd-iaccessible.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd-iconbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd-iconbutton.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd-listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd-listbox.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd-nsaccessibility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd-nsaccessibility.mm -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd-skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd-skin.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd-slider.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/virtwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/virtwnd.h -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/wndsize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/wndsize.cpp -------------------------------------------------------------------------------- /library/WDL/WDL/wingui/wndsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/wingui/wndsize.h -------------------------------------------------------------------------------- /library/WDL/WDL/xsrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/xsrand.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/adler32.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/compress.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/crc32.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/crc32.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/deflate.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/deflate.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/gzclose.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/gzguts.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/gzlib.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/gzread.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/gzwrite.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/infback.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/inffast.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/inffast.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/inffixed.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/inflate.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/inflate.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/inftrees.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/inftrees.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/ioapi.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/ioapi.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/trees.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/trees.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/uncompr.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/unzip.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/unzip.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/zconf.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/zip.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/zip.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/zlib.h -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/zutil.c -------------------------------------------------------------------------------- /library/WDL/WDL/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/WDL/WDL/zlib/zutil.h -------------------------------------------------------------------------------- /library/picojson/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/picojson/picojson.h -------------------------------------------------------------------------------- /library/reaper_plugin/reaper_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/reaper_plugin/reaper_plugin.h -------------------------------------------------------------------------------- /library/reaper_plugin/reaper_plugin_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/library/reaper_plugin/reaper_plugin_functions.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/main.cpp -------------------------------------------------------------------------------- /main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/main.hpp -------------------------------------------------------------------------------- /reascript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/reascript.hpp -------------------------------------------------------------------------------- /reascript/lua/test_mrp_gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/reascript/lua/test_mrp_gui.lua -------------------------------------------------------------------------------- /reascript/lua/unicode_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/reascript/lua/unicode_test.lua -------------------------------------------------------------------------------- /source/MyFirstClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/MyFirstClass.cpp -------------------------------------------------------------------------------- /source/lice_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/lice_control.cpp -------------------------------------------------------------------------------- /source/mrp_pcm_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/mrp_pcm_source.cpp -------------------------------------------------------------------------------- /source/mrpexamplewindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/mrpexamplewindows.cpp -------------------------------------------------------------------------------- /source/mrpwincontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/mrpwincontrols.cpp -------------------------------------------------------------------------------- /source/mrpwindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/mrpwindows.cpp -------------------------------------------------------------------------------- /source/mylicecontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/mylicecontrols.cpp -------------------------------------------------------------------------------- /source/reaper_action_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/reaper_action_helper.cpp -------------------------------------------------------------------------------- /source/reaper_function_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/reaper_function_helper.cpp -------------------------------------------------------------------------------- /source/reascriptgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/reascriptgui.cpp -------------------------------------------------------------------------------- /source/utilfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/utilfuncs.cpp -------------------------------------------------------------------------------- /source/xendynamicprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elanhickler/MyReaperPlugin/HEAD/source/xendynamicprocessor.cpp --------------------------------------------------------------------------------