├── .gitattributes ├── README.md ├── 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 ├── diffcalc.h ├── dirscan.h ├── eel2 │ ├── .gitignore │ ├── Makefile │ ├── a2i.php │ ├── a2x64.php │ ├── asm-nseel-aarch64-gcc.c │ ├── asm-nseel-arm-gcc.c │ ├── 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_import.h │ ├── eel_lice.h │ ├── eel_mdct.h │ ├── eel_misc.h │ ├── eel_net.h │ ├── eel_strings.h │ ├── eelscript.h │ ├── gen-lex-yacc │ ├── glue_aarch64.h │ ├── glue_arm.h │ ├── glue_port.h │ ├── glue_port_new.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 ├── has_strings.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 │ ├── curverasterbuffer.h │ ├── 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_import.h │ ├── 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 │ └── test │ │ ├── Controller.h │ │ ├── Controller.mm │ │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── 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 ├── 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 ├── ptrlist_indexed.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 │ ├── info.php │ ├── stream-config.php │ └── stream.php ├── scsrc.cpp ├── scsrc.h ├── setthreadname.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 │ ├── 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 │ │ ├── test_UTF16LE.rc │ │ ├── test_UTF8_LF.rc │ │ └── 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-generic-gdk.cpp │ ├── swell-generic-headless.cpp │ ├── 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.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.cpp │ └── windows.h ├── time_precise.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 ├── wdl_base64.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 │ └── test.cpp ├── win32_helpers.h ├── win32_hidpi.h ├── win32_printf.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 ├── xmlparse.h ├── xmlparse_test.cpp ├── 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 │ ├── zlib_import.h │ ├── zutil.c │ └── zutil.h └── oscii-bot ├── Makefile ├── OSCII-bot.sln ├── OSCII-bot.vcxproj ├── OSCII-bot.vcxproj.filters ├── Resources └── main.png ├── device.h ├── icon1.ico ├── license.txt ├── main.cpp ├── midi2osc.cpp ├── midi_linux.cpp ├── midi_osx.cpp ├── midi_win32.cpp ├── oscii.xcodeproj └── project.pbxproj ├── oscii ├── Base.lproj │ └── MainMenu.xib ├── OSCII-bot.icns ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings ├── main.m ├── oscii-Info.plist └── oscii-Prefix.pch ├── osciibot.dsp ├── osciibot.dsw ├── oscmsg.cpp ├── oscmsg.h ├── readme.txt ├── res.rc ├── resource.h └── sample_scripts ├── alphatrack.txt ├── sample_script.txt ├── show-io.txt └── sinewave_text.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/README.md -------------------------------------------------------------------------------- /WDL/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/.gitattributes -------------------------------------------------------------------------------- /WDL/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/MersenneTwister.h -------------------------------------------------------------------------------- /WDL/adpcm_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/adpcm_decode.h -------------------------------------------------------------------------------- /WDL/adpcm_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/adpcm_encode.h -------------------------------------------------------------------------------- /WDL/assocarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/assocarray.h -------------------------------------------------------------------------------- /WDL/audiobuffercontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/audiobuffercontainer.cpp -------------------------------------------------------------------------------- /WDL/audiobuffercontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/audiobuffercontainer.h -------------------------------------------------------------------------------- /WDL/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/bitfield.h -------------------------------------------------------------------------------- /WDL/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/blowfish.c -------------------------------------------------------------------------------- /WDL/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/blowfish.h -------------------------------------------------------------------------------- /WDL/chunkalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/chunkalloc.h -------------------------------------------------------------------------------- /WDL/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/circbuf.h -------------------------------------------------------------------------------- /WDL/cmath/bessel_polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/bessel_polynomial.h -------------------------------------------------------------------------------- /WDL/cmath/complex_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/complex_number.h -------------------------------------------------------------------------------- /WDL/cmath/custom_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/custom_math.h -------------------------------------------------------------------------------- /WDL/cmath/durand_kerner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/durand_kerner.h -------------------------------------------------------------------------------- /WDL/cmath/factorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/factorial.h -------------------------------------------------------------------------------- /WDL/cmath/horner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/horner.h -------------------------------------------------------------------------------- /WDL/cmath/test_bessel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/test_bessel.c -------------------------------------------------------------------------------- /WDL/cmath/test_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/cmath/test_eval.c -------------------------------------------------------------------------------- /WDL/convoengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/convoengine.cpp -------------------------------------------------------------------------------- /WDL/convoengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/convoengine.h -------------------------------------------------------------------------------- /WDL/db2val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/db2val.h -------------------------------------------------------------------------------- /WDL/denormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/denormal.h -------------------------------------------------------------------------------- /WDL/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/des.cpp -------------------------------------------------------------------------------- /WDL/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/des.h -------------------------------------------------------------------------------- /WDL/destroycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/destroycheck.h -------------------------------------------------------------------------------- /WDL/diffcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/diffcalc.h -------------------------------------------------------------------------------- /WDL/dirscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/dirscan.h -------------------------------------------------------------------------------- /WDL/eel2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/.gitignore -------------------------------------------------------------------------------- /WDL/eel2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/Makefile -------------------------------------------------------------------------------- /WDL/eel2/a2i.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/a2i.php -------------------------------------------------------------------------------- /WDL/eel2/a2x64.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/a2x64.php -------------------------------------------------------------------------------- /WDL/eel2/asm-nseel-aarch64-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/asm-nseel-aarch64-gcc.c -------------------------------------------------------------------------------- /WDL/eel2/asm-nseel-arm-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/asm-nseel-arm-gcc.c -------------------------------------------------------------------------------- /WDL/eel2/asm-nseel-ppc-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/asm-nseel-ppc-gcc.c -------------------------------------------------------------------------------- /WDL/eel2/asm-nseel-x64-macho.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/asm-nseel-x64-macho.o -------------------------------------------------------------------------------- /WDL/eel2/asm-nseel-x64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/asm-nseel-x64.obj -------------------------------------------------------------------------------- /WDL/eel2/asm-nseel-x86-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/asm-nseel-x86-gcc.c -------------------------------------------------------------------------------- /WDL/eel2/asm-nseel-x86-msvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/asm-nseel-x86-msvc.c -------------------------------------------------------------------------------- /WDL/eel2/eel2.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel2.l -------------------------------------------------------------------------------- /WDL/eel2/eel2.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel2.vim -------------------------------------------------------------------------------- /WDL/eel2/eel2.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel2.y -------------------------------------------------------------------------------- /WDL/eel2/eel_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_atomic.h -------------------------------------------------------------------------------- /WDL/eel2/eel_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_eval.h -------------------------------------------------------------------------------- /WDL/eel2/eel_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_fft.h -------------------------------------------------------------------------------- /WDL/eel2/eel_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_files.h -------------------------------------------------------------------------------- /WDL/eel2/eel_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_import.h -------------------------------------------------------------------------------- /WDL/eel2/eel_lice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_lice.h -------------------------------------------------------------------------------- /WDL/eel2/eel_mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_mdct.h -------------------------------------------------------------------------------- /WDL/eel2/eel_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_misc.h -------------------------------------------------------------------------------- /WDL/eel2/eel_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_net.h -------------------------------------------------------------------------------- /WDL/eel2/eel_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eel_strings.h -------------------------------------------------------------------------------- /WDL/eel2/eelscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/eelscript.h -------------------------------------------------------------------------------- /WDL/eel2/gen-lex-yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/gen-lex-yacc -------------------------------------------------------------------------------- /WDL/eel2/glue_aarch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/glue_aarch64.h -------------------------------------------------------------------------------- /WDL/eel2/glue_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/glue_arm.h -------------------------------------------------------------------------------- /WDL/eel2/glue_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/glue_port.h -------------------------------------------------------------------------------- /WDL/eel2/glue_port_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/glue_port_new.h -------------------------------------------------------------------------------- /WDL/eel2/glue_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/glue_ppc.h -------------------------------------------------------------------------------- /WDL/eel2/glue_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/glue_x86.h -------------------------------------------------------------------------------- /WDL/eel2/glue_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/glue_x86_64.h -------------------------------------------------------------------------------- /WDL/eel2/loose_eel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/loose_eel.cpp -------------------------------------------------------------------------------- /WDL/eel2/loose_eel.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/loose_eel.dsp -------------------------------------------------------------------------------- /WDL/eel2/loose_eel.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/loose_eel.dsw -------------------------------------------------------------------------------- /WDL/eel2/loose_eel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/loose_eel.sln -------------------------------------------------------------------------------- /WDL/eel2/loose_eel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/loose_eel.vcxproj -------------------------------------------------------------------------------- /WDL/eel2/loose_eel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/loose_eel.vcxproj.filters -------------------------------------------------------------------------------- /WDL/eel2/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/makefile.vc -------------------------------------------------------------------------------- /WDL/eel2/ns-eel-addfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/ns-eel-addfuncs.h -------------------------------------------------------------------------------- /WDL/eel2/ns-eel-func-ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/ns-eel-func-ref.h -------------------------------------------------------------------------------- /WDL/eel2/ns-eel-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/ns-eel-int.h -------------------------------------------------------------------------------- /WDL/eel2/ns-eel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/ns-eel.h -------------------------------------------------------------------------------- /WDL/eel2/nseel-caltab.c: -------------------------------------------------------------------------------- 1 | // no longer used -------------------------------------------------------------------------------- /WDL/eel2/nseel-cfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/nseel-cfunc.c -------------------------------------------------------------------------------- /WDL/eel2/nseel-compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/nseel-compiler.c -------------------------------------------------------------------------------- /WDL/eel2/nseel-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/nseel-eval.c -------------------------------------------------------------------------------- /WDL/eel2/nseel-lextab.c: -------------------------------------------------------------------------------- 1 | // no longer used -------------------------------------------------------------------------------- /WDL/eel2/nseel-ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/nseel-ram.c -------------------------------------------------------------------------------- /WDL/eel2/nseel-yylex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/nseel-yylex.c -------------------------------------------------------------------------------- /WDL/eel2/scripts/circle.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/scripts/circle.eel -------------------------------------------------------------------------------- /WDL/eel2/scripts/eval_test.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/scripts/eval_test.eel -------------------------------------------------------------------------------- /WDL/eel2/scripts/gfx_test.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/scripts/gfx_test.eel -------------------------------------------------------------------------------- /WDL/eel2/scripts/gfx_test_defer.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/scripts/gfx_test_defer.eel -------------------------------------------------------------------------------- /WDL/eel2/scripts/httpd.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/scripts/httpd.eel -------------------------------------------------------------------------------- /WDL/eel2/scripts/sinewave_text.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/scripts/sinewave_text.eel -------------------------------------------------------------------------------- /WDL/eel2/scripts/space.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/scripts/space.eel -------------------------------------------------------------------------------- /WDL/eel2/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/y.tab.c -------------------------------------------------------------------------------- /WDL/eel2/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/eel2/y.tab.h -------------------------------------------------------------------------------- /WDL/fastqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/fastqueue.h -------------------------------------------------------------------------------- /WDL/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/ffmpeg.h -------------------------------------------------------------------------------- /WDL/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/fft.c -------------------------------------------------------------------------------- /WDL/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/fft.h -------------------------------------------------------------------------------- /WDL/filebrowse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/filebrowse.cpp -------------------------------------------------------------------------------- /WDL/filebrowse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/filebrowse.h -------------------------------------------------------------------------------- /WDL/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/filename.h -------------------------------------------------------------------------------- /WDL/fileread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/fileread.h -------------------------------------------------------------------------------- /WDL/filewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/filewrite.h -------------------------------------------------------------------------------- /WDL/fnv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/fnv64.h -------------------------------------------------------------------------------- /WDL/giflib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/AUTHORS -------------------------------------------------------------------------------- /WDL/giflib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/COPYING -------------------------------------------------------------------------------- /WDL/giflib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/ChangeLog -------------------------------------------------------------------------------- /WDL/giflib/DEVELOPERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/DEVELOPERS -------------------------------------------------------------------------------- /WDL/giflib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/README -------------------------------------------------------------------------------- /WDL/giflib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/config.h -------------------------------------------------------------------------------- /WDL/giflib/dgif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/dgif_lib.c -------------------------------------------------------------------------------- /WDL/giflib/egif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/egif_lib.c -------------------------------------------------------------------------------- /WDL/giflib/gif_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/gif_hash.c -------------------------------------------------------------------------------- /WDL/giflib/gif_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/gif_hash.h -------------------------------------------------------------------------------- /WDL/giflib/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/gif_lib.h -------------------------------------------------------------------------------- /WDL/giflib/gif_lib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/gif_lib_private.h -------------------------------------------------------------------------------- /WDL/giflib/gifalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/giflib/gifalloc.c -------------------------------------------------------------------------------- /WDL/gpu/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/gpu/gpu.cpp -------------------------------------------------------------------------------- /WDL/gpu/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/gpu/gpu.h -------------------------------------------------------------------------------- /WDL/gpu/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/gpu/wglext.h -------------------------------------------------------------------------------- /WDL/has_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/has_strings.h -------------------------------------------------------------------------------- /WDL/heapbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/heapbuf.h -------------------------------------------------------------------------------- /WDL/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/history.txt -------------------------------------------------------------------------------- /WDL/jnetlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/Makefile -------------------------------------------------------------------------------- /WDL/jnetlib/asyncdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/asyncdns.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/asyncdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/asyncdns.h -------------------------------------------------------------------------------- /WDL/jnetlib/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/connection.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/connection.h -------------------------------------------------------------------------------- /WDL/jnetlib/httpget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/httpget.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/httpget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/httpget.h -------------------------------------------------------------------------------- /WDL/jnetlib/httpserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/httpserv.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/httpserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/httpserv.h -------------------------------------------------------------------------------- /WDL/jnetlib/irc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/irc_util.h -------------------------------------------------------------------------------- /WDL/jnetlib/jnetlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/jnetlib.h -------------------------------------------------------------------------------- /WDL/jnetlib/listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/listen.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/listen.h -------------------------------------------------------------------------------- /WDL/jnetlib/netinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/netinc.h -------------------------------------------------------------------------------- /WDL/jnetlib/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/test.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/test.dsp -------------------------------------------------------------------------------- /WDL/jnetlib/test.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/test.dsw -------------------------------------------------------------------------------- /WDL/jnetlib/testbnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/testbnc.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/util.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/util.h -------------------------------------------------------------------------------- /WDL/jnetlib/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/webserver.cpp -------------------------------------------------------------------------------- /WDL/jnetlib/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jnetlib/webserver.h -------------------------------------------------------------------------------- /WDL/jpeglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/README -------------------------------------------------------------------------------- /WDL/jpeglib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/example.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcapimin.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcapistd.c -------------------------------------------------------------------------------- /WDL/jpeglib/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jccoefct.c -------------------------------------------------------------------------------- /WDL/jpeglib/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jccolor.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcdctmgr.c -------------------------------------------------------------------------------- /WDL/jpeglib/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jchuff.c -------------------------------------------------------------------------------- /WDL/jpeglib/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jchuff.h -------------------------------------------------------------------------------- /WDL/jpeglib/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcinit.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcmainct.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcmarker.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcmaster.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcomapi.c -------------------------------------------------------------------------------- /WDL/jpeglib/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jconfig.h -------------------------------------------------------------------------------- /WDL/jpeglib/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcparam.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcphuff.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcprepct.c -------------------------------------------------------------------------------- /WDL/jpeglib/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jcsample.c -------------------------------------------------------------------------------- /WDL/jpeglib/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jctrans.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdapimin.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdapistd.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdatadst.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdatasrc.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdcoefct.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdcolor.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdct.h -------------------------------------------------------------------------------- /WDL/jpeglib/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jddctmgr.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdhuff.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdhuff.h -------------------------------------------------------------------------------- /WDL/jpeglib/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdinput.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdmainct.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdmarker.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdmaster.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdmerge.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdphuff.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdpostct.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdsample.c -------------------------------------------------------------------------------- /WDL/jpeglib/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jdtrans.c -------------------------------------------------------------------------------- /WDL/jpeglib/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jerror.c -------------------------------------------------------------------------------- /WDL/jpeglib/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jerror.h -------------------------------------------------------------------------------- /WDL/jpeglib/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jfdctflt.c -------------------------------------------------------------------------------- /WDL/jpeglib/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jfdctfst.c -------------------------------------------------------------------------------- /WDL/jpeglib/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jfdctint.c -------------------------------------------------------------------------------- /WDL/jpeglib/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jidctflt.c -------------------------------------------------------------------------------- /WDL/jpeglib/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jidctfst.c -------------------------------------------------------------------------------- /WDL/jpeglib/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jidctint.c -------------------------------------------------------------------------------- /WDL/jpeglib/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jidctred.c -------------------------------------------------------------------------------- /WDL/jpeglib/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jinclude.h -------------------------------------------------------------------------------- /WDL/jpeglib/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jmemmgr.c -------------------------------------------------------------------------------- /WDL/jpeglib/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jmemnobs.c -------------------------------------------------------------------------------- /WDL/jpeglib/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jmemsys.h -------------------------------------------------------------------------------- /WDL/jpeglib/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jmorecfg.h -------------------------------------------------------------------------------- /WDL/jpeglib/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jpegint.h -------------------------------------------------------------------------------- /WDL/jpeglib/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jpeglib.h -------------------------------------------------------------------------------- /WDL/jpeglib/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jquant1.c -------------------------------------------------------------------------------- /WDL/jpeglib/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jquant2.c -------------------------------------------------------------------------------- /WDL/jpeglib/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jutils.c -------------------------------------------------------------------------------- /WDL/jpeglib/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/jpeglib/jversion.h -------------------------------------------------------------------------------- /WDL/lameencdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lameencdec.cpp -------------------------------------------------------------------------------- /WDL/lameencdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lameencdec.h -------------------------------------------------------------------------------- /WDL/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/CHANGES -------------------------------------------------------------------------------- /WDL/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/LICENSE -------------------------------------------------------------------------------- /WDL/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/README -------------------------------------------------------------------------------- /WDL/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/png.c -------------------------------------------------------------------------------- /WDL/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/png.h -------------------------------------------------------------------------------- /WDL/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngconf.h -------------------------------------------------------------------------------- /WDL/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngdebug.h -------------------------------------------------------------------------------- /WDL/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngerror.c -------------------------------------------------------------------------------- /WDL/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngget.c -------------------------------------------------------------------------------- /WDL/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pnginfo.h -------------------------------------------------------------------------------- /WDL/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pnglibconf.h -------------------------------------------------------------------------------- /WDL/libpng/pnglibconf.h.prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pnglibconf.h.prebuilt -------------------------------------------------------------------------------- /WDL/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngmem.c -------------------------------------------------------------------------------- /WDL/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngpread.c -------------------------------------------------------------------------------- /WDL/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngpriv.h -------------------------------------------------------------------------------- /WDL/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngread.c -------------------------------------------------------------------------------- /WDL/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngrio.c -------------------------------------------------------------------------------- /WDL/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngrtran.c -------------------------------------------------------------------------------- /WDL/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngrutil.c -------------------------------------------------------------------------------- /WDL/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngset.c -------------------------------------------------------------------------------- /WDL/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngstruct.h -------------------------------------------------------------------------------- /WDL/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngtest.c -------------------------------------------------------------------------------- /WDL/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngtrans.c -------------------------------------------------------------------------------- /WDL/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngwio.c -------------------------------------------------------------------------------- /WDL/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngwrite.c -------------------------------------------------------------------------------- /WDL/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngwtran.c -------------------------------------------------------------------------------- /WDL/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/libpng/pngwutil.c -------------------------------------------------------------------------------- /WDL/lice/curverasterbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/curverasterbuffer.h -------------------------------------------------------------------------------- /WDL/lice/glew/include/GL/WGLEXT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/glew/include/GL/WGLEXT.H -------------------------------------------------------------------------------- /WDL/lice/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/glew/include/GL/glew.h -------------------------------------------------------------------------------- /WDL/lice/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /WDL/lice/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /WDL/lice/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/glew/src/glew.c -------------------------------------------------------------------------------- /WDL/lice/glew/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/glew/src/glewinfo.c -------------------------------------------------------------------------------- /WDL/lice/glew/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/glew/src/visualinfo.c -------------------------------------------------------------------------------- /WDL/lice/lice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice.cpp -------------------------------------------------------------------------------- /WDL/lice/lice.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice.dsp -------------------------------------------------------------------------------- /WDL/lice/lice.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice.dsw -------------------------------------------------------------------------------- /WDL/lice/lice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice.h -------------------------------------------------------------------------------- /WDL/lice/lice.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice.vcxproj -------------------------------------------------------------------------------- /WDL/lice/lice_arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_arc.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_bezier.h -------------------------------------------------------------------------------- /WDL/lice/lice_bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_bmp.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_colorspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_colorspace.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_combine.h -------------------------------------------------------------------------------- /WDL/lice/lice_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_extended.h -------------------------------------------------------------------------------- /WDL/lice/lice_gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_gif.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_gif_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_gif_write.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_gl_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_gl_ctx.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_gl_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_gl_ctx.h -------------------------------------------------------------------------------- /WDL/lice/lice_glbitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_glbitmap.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_glbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_glbitmap.h -------------------------------------------------------------------------------- /WDL/lice/lice_ico.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_ico.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_image.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_import.h -------------------------------------------------------------------------------- /WDL/lice/lice_jpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_jpg.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_jpg_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_jpg_write.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_lcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_lcf.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_lcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_lcf.h -------------------------------------------------------------------------------- /WDL/lice/lice_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_line.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_lvg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_lvg.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_palette.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_pcx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_pcx.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_png.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_png_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_png_write.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_svg.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_texgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_texgen.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_text.cpp -------------------------------------------------------------------------------- /WDL/lice/lice_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_text.h -------------------------------------------------------------------------------- /WDL/lice/lice_textnew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/lice_textnew.cpp -------------------------------------------------------------------------------- /WDL/lice/test/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/Controller.h -------------------------------------------------------------------------------- /WDL/lice/test/Controller.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/Controller.mm -------------------------------------------------------------------------------- /WDL/lice/test/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /WDL/lice/test/English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /WDL/lice/test/English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /WDL/lice/test/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /WDL/lice/test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/Info.plist -------------------------------------------------------------------------------- /WDL/lice/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/Makefile -------------------------------------------------------------------------------- /WDL/lice/test/fly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/fly.cpp -------------------------------------------------------------------------------- /WDL/lice/test/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/image.png -------------------------------------------------------------------------------- /WDL/lice/test/imgs2gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/imgs2gif.cpp -------------------------------------------------------------------------------- /WDL/lice/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/main.cpp -------------------------------------------------------------------------------- /WDL/lice/test/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/main.ico -------------------------------------------------------------------------------- /WDL/lice/test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/main.m -------------------------------------------------------------------------------- /WDL/lice/test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/resource.h -------------------------------------------------------------------------------- /WDL/lice/test/test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/test.dsp -------------------------------------------------------------------------------- /WDL/lice/test/test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/test.rc -------------------------------------------------------------------------------- /WDL/lice/test/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/test.sln -------------------------------------------------------------------------------- /WDL/lice/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/test.vcxproj -------------------------------------------------------------------------------- /WDL/lice/test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/test.vcxproj.filters -------------------------------------------------------------------------------- /WDL/lice/test/test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lice/test/test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WDL/lineparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/lineparse.h -------------------------------------------------------------------------------- /WDL/mergesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/mergesort.h -------------------------------------------------------------------------------- /WDL/mp3write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/mp3write.h -------------------------------------------------------------------------------- /WDL/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/mutex.h -------------------------------------------------------------------------------- /WDL/nsv/nsvbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/nsv/nsvbs.h -------------------------------------------------------------------------------- /WDL/nsv/nsvlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/nsv/nsvlib.cpp -------------------------------------------------------------------------------- /WDL/nsv/nsvlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/nsv/nsvlib.h -------------------------------------------------------------------------------- /WDL/pcmfmtcvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/pcmfmtcvt.h -------------------------------------------------------------------------------- /WDL/plush2/pl_cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_cam.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_make.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_make.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_math.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_obj.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_pf_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_pf_tex.h -------------------------------------------------------------------------------- /WDL/plush2/pl_putface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_putface.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_read_3ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_read_3ds.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_read_cob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_read_cob.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_read_jaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_read_jaw.cpp -------------------------------------------------------------------------------- /WDL/plush2/pl_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/pl_spline.cpp -------------------------------------------------------------------------------- /WDL/plush2/plush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/plush.h -------------------------------------------------------------------------------- /WDL/plush2/plush2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/plush2/plush2.dsp -------------------------------------------------------------------------------- /WDL/poollist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/poollist.h -------------------------------------------------------------------------------- /WDL/projectcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/projectcontext.cpp -------------------------------------------------------------------------------- /WDL/projectcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/projectcontext.h -------------------------------------------------------------------------------- /WDL/ptrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/ptrlist.h -------------------------------------------------------------------------------- /WDL/ptrlist_indexed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/ptrlist_indexed.h -------------------------------------------------------------------------------- /WDL/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/queue.h -------------------------------------------------------------------------------- /WDL/reminder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/reminder.h -------------------------------------------------------------------------------- /WDL/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/resample.cpp -------------------------------------------------------------------------------- /WDL/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/resample.h -------------------------------------------------------------------------------- /WDL/rfb_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/rfb_client.cpp -------------------------------------------------------------------------------- /WDL/rfb_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/rfb_client.h -------------------------------------------------------------------------------- /WDL/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/rng.cpp -------------------------------------------------------------------------------- /WDL/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/rng.h -------------------------------------------------------------------------------- /WDL/rpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/rpool.h -------------------------------------------------------------------------------- /WDL/sc_bounce/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sc_bounce/index.html -------------------------------------------------------------------------------- /WDL/sc_bounce/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sc_bounce/info.php -------------------------------------------------------------------------------- /WDL/sc_bounce/stream-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sc_bounce/stream-config.php -------------------------------------------------------------------------------- /WDL/sc_bounce/stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sc_bounce/stream.php -------------------------------------------------------------------------------- /WDL/scsrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/scsrc.cpp -------------------------------------------------------------------------------- /WDL/scsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/scsrc.h -------------------------------------------------------------------------------- /WDL/setthreadname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/setthreadname.h -------------------------------------------------------------------------------- /WDL/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sha.cpp -------------------------------------------------------------------------------- /WDL/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sha.h -------------------------------------------------------------------------------- /WDL/sharedpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sharedpool.h -------------------------------------------------------------------------------- /WDL/shm_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/shm_connection.cpp -------------------------------------------------------------------------------- /WDL/shm_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/shm_connection.h -------------------------------------------------------------------------------- /WDL/shm_msgreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/shm_msgreply.cpp -------------------------------------------------------------------------------- /WDL/shm_msgreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/shm_msgreply.h -------------------------------------------------------------------------------- /WDL/simple_pitchshift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/simple_pitchshift.h -------------------------------------------------------------------------------- /WDL/simple_pitchshift2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/simple_pitchshift2.h -------------------------------------------------------------------------------- /WDL/sinewavegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/sinewavegen.h -------------------------------------------------------------------------------- /WDL/stringpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/stringpool.h -------------------------------------------------------------------------------- /WDL/swell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/Makefile -------------------------------------------------------------------------------- /WDL/swell/commctrl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /WDL/swell/mac_resgen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/mac_resgen.php -------------------------------------------------------------------------------- /WDL/swell/sample_project/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /WDL/swell/sample_project/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /WDL/swell/sample_project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/Info.plist -------------------------------------------------------------------------------- /WDL/swell/sample_project/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/app_main.cpp -------------------------------------------------------------------------------- /WDL/swell/sample_project/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/main.h -------------------------------------------------------------------------------- /WDL/swell/sample_project/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/main.m -------------------------------------------------------------------------------- /WDL/swell/sample_project/main_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/main_dialog.cpp -------------------------------------------------------------------------------- /WDL/swell/sample_project/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/resource.h -------------------------------------------------------------------------------- /WDL/swell/sample_project/sample_project.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/sample_project.dsp -------------------------------------------------------------------------------- /WDL/swell/sample_project/sample_project.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/sample_project.dsw -------------------------------------------------------------------------------- /WDL/swell/sample_project/sample_project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/sample_project.rc -------------------------------------------------------------------------------- /WDL/swell/sample_project/sample_project.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/sample_project.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /WDL/swell/sample_project/sample_project.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/sample_project.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WDL/swell/sample_project/sample_project_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/sample_project_Prefix.pch -------------------------------------------------------------------------------- /WDL/swell/sample_project/test_UTF16LE.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/test_UTF16LE.rc -------------------------------------------------------------------------------- /WDL/swell/sample_project/test_UTF8_LF.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/test_UTF8_LF.rc -------------------------------------------------------------------------------- /WDL/swell/sample_project/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/sample_project/version.plist -------------------------------------------------------------------------------- /WDL/swell/shlobj.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /WDL/swell/swell-appstub-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-appstub-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-appstub.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-appstub.mm -------------------------------------------------------------------------------- /WDL/swell/swell-dlg-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-dlg-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-dlg.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-dlg.mm -------------------------------------------------------------------------------- /WDL/swell/swell-dlggen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-dlggen.h -------------------------------------------------------------------------------- /WDL/swell/swell-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-functions.h -------------------------------------------------------------------------------- /WDL/swell/swell-gdi-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-gdi-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-gdi-internalpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-gdi-internalpool.h -------------------------------------------------------------------------------- /WDL/swell/swell-gdi-lice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-gdi-lice.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-gdi.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-gdi.mm -------------------------------------------------------------------------------- /WDL/swell/swell-generic-gdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-generic-gdk.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-generic-headless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-generic-headless.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-ini.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-internal.h -------------------------------------------------------------------------------- /WDL/swell/swell-kb-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-kb-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-kb.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-kb.mm -------------------------------------------------------------------------------- /WDL/swell/swell-menu-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-menu-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-menu.mm -------------------------------------------------------------------------------- /WDL/swell/swell-menugen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-menugen.h -------------------------------------------------------------------------------- /WDL/swell/swell-misc-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-misc-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-misc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-misc.mm -------------------------------------------------------------------------------- /WDL/swell/swell-miscdlg-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-miscdlg-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-miscdlg.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-miscdlg.mm -------------------------------------------------------------------------------- /WDL/swell/swell-modstub-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-modstub-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-modstub.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-modstub.mm -------------------------------------------------------------------------------- /WDL/swell/swell-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-types.h -------------------------------------------------------------------------------- /WDL/swell/swell-wnd-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-wnd-generic.cpp -------------------------------------------------------------------------------- /WDL/swell/swell-wnd.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell-wnd.mm -------------------------------------------------------------------------------- /WDL/swell/swell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell.cpp -------------------------------------------------------------------------------- /WDL/swell/swell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swell.h -------------------------------------------------------------------------------- /WDL/swell/swellappmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swellappmain.h -------------------------------------------------------------------------------- /WDL/swell/swellappmain.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/swellappmain.mm -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /WDL/swell/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/swell/windows.h -------------------------------------------------------------------------------- /WDL/time_precise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/time_precise.h -------------------------------------------------------------------------------- /WDL/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/timing.c -------------------------------------------------------------------------------- /WDL/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/timing.h -------------------------------------------------------------------------------- /WDL/tinyxml/libxml_tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/libxml_tinyxml.cpp -------------------------------------------------------------------------------- /WDL/tinyxml/libxml_tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/libxml_tinyxml.h -------------------------------------------------------------------------------- /WDL/tinyxml/svgtiny_colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/svgtiny_colors.c -------------------------------------------------------------------------------- /WDL/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /WDL/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/tinystr.h -------------------------------------------------------------------------------- /WDL/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /WDL/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /WDL/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /WDL/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /WDL/verbengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/verbengine.h -------------------------------------------------------------------------------- /WDL/vorbisencdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/vorbisencdec.h -------------------------------------------------------------------------------- /WDL/wavwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wavwrite.h -------------------------------------------------------------------------------- /WDL/wdl_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wdl_base64.h -------------------------------------------------------------------------------- /WDL/wdlatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wdlatomic.h -------------------------------------------------------------------------------- /WDL/wdlcstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wdlcstring.h -------------------------------------------------------------------------------- /WDL/wdlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wdlstring.h -------------------------------------------------------------------------------- /WDL/wdltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wdltypes.h -------------------------------------------------------------------------------- /WDL/wdlutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wdlutf8.h -------------------------------------------------------------------------------- /WDL/win32_curses/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_curses/curses.h -------------------------------------------------------------------------------- /WDL/win32_curses/curses_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_curses/curses_editor.cpp -------------------------------------------------------------------------------- /WDL/win32_curses/curses_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_curses/curses_editor.h -------------------------------------------------------------------------------- /WDL/win32_curses/curses_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_curses/curses_win32.cpp -------------------------------------------------------------------------------- /WDL/win32_curses/eel_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_curses/eel_edit.cpp -------------------------------------------------------------------------------- /WDL/win32_curses/eel_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_curses/eel_edit.h -------------------------------------------------------------------------------- /WDL/win32_curses/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_curses/test.cpp -------------------------------------------------------------------------------- /WDL/win32_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_helpers.h -------------------------------------------------------------------------------- /WDL/win32_hidpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_hidpi.h -------------------------------------------------------------------------------- /WDL/win32_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_printf.h -------------------------------------------------------------------------------- /WDL/win32_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_utf8.c -------------------------------------------------------------------------------- /WDL/win32_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win32_utf8.h -------------------------------------------------------------------------------- /WDL/win7filedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win7filedialog.cpp -------------------------------------------------------------------------------- /WDL/win7filedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/win7filedialog.h -------------------------------------------------------------------------------- /WDL/wingui/dlgitemborder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/dlgitemborder.h -------------------------------------------------------------------------------- /WDL/wingui/membitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/membitmap.h -------------------------------------------------------------------------------- /WDL/wingui/richeditctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/richeditctrl.h -------------------------------------------------------------------------------- /WDL/wingui/scrollbar/coolscroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/scrollbar/coolscroll.cpp -------------------------------------------------------------------------------- /WDL/wingui/scrollbar/coolscroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/scrollbar/coolscroll.h -------------------------------------------------------------------------------- /WDL/wingui/virtwnd-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd-controls.h -------------------------------------------------------------------------------- /WDL/wingui/virtwnd-iaccessible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd-iaccessible.cpp -------------------------------------------------------------------------------- /WDL/wingui/virtwnd-iconbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd-iconbutton.cpp -------------------------------------------------------------------------------- /WDL/wingui/virtwnd-listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd-listbox.cpp -------------------------------------------------------------------------------- /WDL/wingui/virtwnd-nsaccessibility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd-nsaccessibility.mm -------------------------------------------------------------------------------- /WDL/wingui/virtwnd-skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd-skin.h -------------------------------------------------------------------------------- /WDL/wingui/virtwnd-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd-slider.cpp -------------------------------------------------------------------------------- /WDL/wingui/virtwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd.cpp -------------------------------------------------------------------------------- /WDL/wingui/virtwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/virtwnd.h -------------------------------------------------------------------------------- /WDL/wingui/wndsize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/wndsize.cpp -------------------------------------------------------------------------------- /WDL/wingui/wndsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/wingui/wndsize.h -------------------------------------------------------------------------------- /WDL/xmlparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/xmlparse.h -------------------------------------------------------------------------------- /WDL/xmlparse_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/xmlparse_test.cpp -------------------------------------------------------------------------------- /WDL/xsrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/xsrand.h -------------------------------------------------------------------------------- /WDL/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/adler32.c -------------------------------------------------------------------------------- /WDL/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/compress.c -------------------------------------------------------------------------------- /WDL/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/crc32.c -------------------------------------------------------------------------------- /WDL/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/crc32.h -------------------------------------------------------------------------------- /WDL/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/deflate.c -------------------------------------------------------------------------------- /WDL/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/deflate.h -------------------------------------------------------------------------------- /WDL/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/gzclose.c -------------------------------------------------------------------------------- /WDL/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/gzguts.h -------------------------------------------------------------------------------- /WDL/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/gzlib.c -------------------------------------------------------------------------------- /WDL/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/gzread.c -------------------------------------------------------------------------------- /WDL/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/gzwrite.c -------------------------------------------------------------------------------- /WDL/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/infback.c -------------------------------------------------------------------------------- /WDL/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/inffast.c -------------------------------------------------------------------------------- /WDL/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/inffast.h -------------------------------------------------------------------------------- /WDL/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/inffixed.h -------------------------------------------------------------------------------- /WDL/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/inflate.c -------------------------------------------------------------------------------- /WDL/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/inflate.h -------------------------------------------------------------------------------- /WDL/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/inftrees.c -------------------------------------------------------------------------------- /WDL/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/inftrees.h -------------------------------------------------------------------------------- /WDL/zlib/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/ioapi.c -------------------------------------------------------------------------------- /WDL/zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/ioapi.h -------------------------------------------------------------------------------- /WDL/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/trees.c -------------------------------------------------------------------------------- /WDL/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/trees.h -------------------------------------------------------------------------------- /WDL/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/uncompr.c -------------------------------------------------------------------------------- /WDL/zlib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/unzip.c -------------------------------------------------------------------------------- /WDL/zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/unzip.h -------------------------------------------------------------------------------- /WDL/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/zconf.h -------------------------------------------------------------------------------- /WDL/zlib/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/zip.c -------------------------------------------------------------------------------- /WDL/zlib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/zip.h -------------------------------------------------------------------------------- /WDL/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/zlib.h -------------------------------------------------------------------------------- /WDL/zlib/zlib_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/zlib_import.h -------------------------------------------------------------------------------- /WDL/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/zutil.c -------------------------------------------------------------------------------- /WDL/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/WDL/zlib/zutil.h -------------------------------------------------------------------------------- /oscii-bot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/Makefile -------------------------------------------------------------------------------- /oscii-bot/OSCII-bot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/OSCII-bot.sln -------------------------------------------------------------------------------- /oscii-bot/OSCII-bot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/OSCII-bot.vcxproj -------------------------------------------------------------------------------- /oscii-bot/OSCII-bot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/OSCII-bot.vcxproj.filters -------------------------------------------------------------------------------- /oscii-bot/Resources/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/Resources/main.png -------------------------------------------------------------------------------- /oscii-bot/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/device.h -------------------------------------------------------------------------------- /oscii-bot/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/icon1.ico -------------------------------------------------------------------------------- /oscii-bot/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/license.txt -------------------------------------------------------------------------------- /oscii-bot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/main.cpp -------------------------------------------------------------------------------- /oscii-bot/midi2osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/midi2osc.cpp -------------------------------------------------------------------------------- /oscii-bot/midi_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/midi_linux.cpp -------------------------------------------------------------------------------- /oscii-bot/midi_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/midi_osx.cpp -------------------------------------------------------------------------------- /oscii-bot/midi_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/midi_win32.cpp -------------------------------------------------------------------------------- /oscii-bot/oscii.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscii.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /oscii-bot/oscii/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscii/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /oscii-bot/oscii/OSCII-bot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscii/OSCII-bot.icns -------------------------------------------------------------------------------- /oscii-bot/oscii/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscii/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /oscii-bot/oscii/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /oscii-bot/oscii/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscii/main.m -------------------------------------------------------------------------------- /oscii-bot/oscii/oscii-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscii/oscii-Info.plist -------------------------------------------------------------------------------- /oscii-bot/oscii/oscii-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscii/oscii-Prefix.pch -------------------------------------------------------------------------------- /oscii-bot/osciibot.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/osciibot.dsp -------------------------------------------------------------------------------- /oscii-bot/osciibot.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/osciibot.dsw -------------------------------------------------------------------------------- /oscii-bot/oscmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscmsg.cpp -------------------------------------------------------------------------------- /oscii-bot/oscmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/oscmsg.h -------------------------------------------------------------------------------- /oscii-bot/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/readme.txt -------------------------------------------------------------------------------- /oscii-bot/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/res.rc -------------------------------------------------------------------------------- /oscii-bot/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/resource.h -------------------------------------------------------------------------------- /oscii-bot/sample_scripts/alphatrack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/sample_scripts/alphatrack.txt -------------------------------------------------------------------------------- /oscii-bot/sample_scripts/sample_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/sample_scripts/sample_script.txt -------------------------------------------------------------------------------- /oscii-bot/sample_scripts/show-io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/sample_scripts/show-io.txt -------------------------------------------------------------------------------- /oscii-bot/sample_scripts/sinewave_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfrankel/oscii-bot/HEAD/oscii-bot/sample_scripts/sinewave_text.txt --------------------------------------------------------------------------------