├── Makefile ├── README.md ├── RELEASENOTES ├── base64.c ├── base64.h ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── fontmap_static.h ├── inlinedata.c ├── inlinedata.h ├── inlinetest.dat ├── iosicon.svg ├── iphone ├── Default-568h@2x.png ├── Default-Portrait@2x~ipad.png ├── Default-Portrait~ipad.png ├── Default.png ├── DisconnectAlertDelegate.h ├── DisconnectAlertDelegate.m ├── Info.plist ├── RecentItemsDataSource.h ├── RecentItemsDataSource.m ├── SDL_config.h ├── ServerSelect.xib ├── ServerSelectUIView.h ├── ServerSelectUIView.m ├── build-libssl.sh ├── hackterm.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── new.xcuserdatad │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── new.xcuserdatad │ │ └── xcschemes │ │ ├── hackterm.xcscheme │ │ └── xcschememanagement.plist ├── ios114.png ├── ios144.png ├── ios57.png ├── ios72.png ├── iphone_pasteboard.h ├── iphone_pasteboard.m ├── lib │ ├── libcrypto.a │ └── libssl.a ├── openssl_inc │ └── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h ├── recentrw.h ├── recentrw.m ├── sslaunch.h └── sslaunch.m ├── libpng ├── .DS_Store ├── .libs │ ├── libpng15-symbols.expsym │ ├── libpng15.a │ ├── libpng15.la │ └── libpng15.lai ├── ANNOUNCE ├── CHANGES ├── CMakeLists.txt ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.am ├── Makefile.in ├── README ├── TODO ├── aclocal.m4 ├── arm │ └── filter_neon.S ├── autogen.sh ├── config.guess ├── config.h ├── config.h.in ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── contrib │ ├── README.txt │ ├── gregbook │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── Makefile.mingw32 │ │ ├── Makefile.sgi │ │ ├── Makefile.unx │ │ ├── Makefile.w32 │ │ ├── README │ │ ├── makevms.com │ │ ├── readpng.c │ │ ├── readpng.h │ │ ├── readpng2.c │ │ ├── readpng2.h │ │ ├── readppm.c │ │ ├── rpng-win.c │ │ ├── rpng-x.c │ │ ├── rpng2-win.c │ │ ├── rpng2-x.c │ │ ├── toucan.png │ │ ├── wpng.c │ │ ├── writepng.c │ │ └── writepng.h │ ├── libtests │ │ └── pngvalid.c │ ├── pngminim │ │ ├── README │ │ ├── decoder │ │ │ ├── README │ │ │ ├── makefile │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ ├── encoder │ │ │ ├── README │ │ │ ├── makefile │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ └── preader │ │ │ ├── README │ │ │ ├── makefile │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ ├── pngminus │ │ ├── README │ │ ├── makefile.std │ │ ├── makefile.tc3 │ │ ├── makevms.com │ │ ├── png2pnm.bat │ │ ├── png2pnm.c │ │ ├── png2pnm.sh │ │ ├── pngminus.bat │ │ ├── pngminus.sh │ │ ├── pnm2png.bat │ │ ├── pnm2png.c │ │ └── pnm2png.sh │ ├── pngsuite │ │ ├── README │ │ ├── basn0g01.png │ │ ├── basn0g02.png │ │ ├── basn0g04.png │ │ ├── basn0g08.png │ │ ├── basn0g16.png │ │ ├── basn2c08.png │ │ ├── basn2c16.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn4a08.png │ │ ├── basn4a16.png │ │ ├── basn6a08.png │ │ ├── basn6a16.png │ │ ├── ftbbn0g01.png │ │ ├── ftbbn0g02.png │ │ ├── ftbbn0g04.png │ │ ├── ftbbn2c16.png │ │ ├── ftbbn3p08.png │ │ ├── ftbgn2c16.png │ │ ├── ftbgn3p08.png │ │ ├── ftbrn2c08.png │ │ ├── ftbwn0g16.png │ │ ├── ftbwn3p08.png │ │ ├── ftbyn3p08.png │ │ ├── ftp0n0g08.png │ │ ├── ftp0n2c08.png │ │ ├── ftp0n3p08.png │ │ └── ftp1n3p08.png │ └── visupng │ │ ├── PngFile.c │ │ ├── PngFile.h │ │ ├── README.txt │ │ ├── VisualPng.c │ │ ├── VisualPng.dsp │ │ ├── VisualPng.dsw │ │ ├── VisualPng.ico │ │ ├── VisualPng.png │ │ ├── VisualPng.rc │ │ ├── cexcept.h │ │ └── resource.h ├── depcomp ├── example.c ├── install-sh ├── libpng-config ├── libpng-config.in ├── libpng-manual.txt ├── libpng.3 ├── libpng.la ├── libpng.pc ├── libpng.pc.in ├── libpng.sym ├── libpng15-config ├── libpng15.la ├── libpng15.pc ├── libpng15_la-png.lo ├── libpng15_la-pngerror.lo ├── libpng15_la-pngget.lo ├── libpng15_la-pngmem.lo ├── libpng15_la-pngpread.lo ├── libpng15_la-pngread.lo ├── libpng15_la-pngrio.lo ├── libpng15_la-pngrtran.lo ├── libpng15_la-pngrutil.lo ├── libpng15_la-pngset.lo ├── libpng15_la-pngset.o ├── libpng15_la-pngtrans.lo ├── libpng15_la-pngwio.lo ├── libpng15_la-pngwrite.lo ├── libpng15_la-pngwtran.lo ├── libpng15_la-pngwutil.lo ├── libpngpf.3 ├── libtool ├── ltmain.sh ├── missing ├── png.5 ├── png.c ├── png.h ├── pngbar.jpg ├── pngbar.png ├── pngconf.h ├── pngdebug.h ├── pngerror.c ├── pngget.c ├── pnginfo.h ├── pnglibconf.dfn ├── pnglibconf.h ├── pnglibconf.out ├── pngmem.c ├── pngnow.png ├── pngpread.c ├── pngpriv.h ├── pngread.c ├── pngrio.c ├── pngrtran.c ├── pngrutil.c ├── pngset.c ├── pngstruct.h ├── pngtest.c ├── pngtest.png ├── pngtrans.c ├── pngusr.dfa ├── pngwio.c ├── pngwrite.c ├── pngwtran.c ├── pngwutil.c ├── projects │ ├── owatcom │ │ ├── libpng.tgt │ │ ├── libpng.wpj │ │ ├── pngconfig.mak │ │ ├── pngtest.tgt │ │ └── pngvalid.tgt │ ├── visualc71 │ │ ├── PRJ0041.mak │ │ ├── README.txt │ │ ├── README_zlib.txt │ │ ├── libpng.sln │ │ ├── libpng.vcproj │ │ ├── pngtest.vcproj │ │ └── zlib.vcproj │ └── vstudio │ │ ├── libpng │ │ └── libpng.vcxproj │ │ ├── pnglibconf │ │ └── pnglibconf.vcxproj │ │ ├── pngtest │ │ └── pngtest.vcxproj │ │ ├── pngvalid │ │ └── pngvalid.vcxproj │ │ ├── readme.txt │ │ ├── vstudio.sln │ │ ├── zlib.props │ │ └── zlib │ │ └── zlib.vcxproj ├── scripts │ ├── README.txt │ ├── SCOPTIONS.ppc │ ├── checksym.awk │ ├── chkfmt │ ├── def.dfn │ ├── descrip.mms │ ├── libpng-config-body.in │ ├── libpng-config-head.in │ ├── libpng.pc.in │ ├── makefile.32sunu │ ├── makefile.64sunu │ ├── makefile.acorn │ ├── makefile.aix │ ├── makefile.amiga │ ├── makefile.atari │ ├── makefile.bc32 │ ├── makefile.beos │ ├── makefile.bor │ ├── makefile.cegcc │ ├── makefile.darwin │ ├── makefile.dec │ ├── makefile.dj2 │ ├── makefile.elf │ ├── makefile.freebsd │ ├── makefile.gcc │ ├── makefile.hp64 │ ├── makefile.hpgcc │ ├── makefile.hpux │ ├── makefile.ibmc │ ├── makefile.intel │ ├── makefile.knr │ ├── makefile.linux │ ├── makefile.mips │ ├── makefile.msc │ ├── makefile.ne12bsd │ ├── makefile.netbsd │ ├── makefile.openbsd │ ├── makefile.sco │ ├── makefile.sggcc │ ├── makefile.sgi │ ├── makefile.std │ ├── makefile.sunos │ ├── makefile.tc3 │ ├── makefile.vcwin32 │ ├── makevms.com │ ├── options.awk │ ├── pnglibconf.dfa │ ├── pnglibconf.h.prebuilt │ ├── pnglibconf.mak │ ├── pngwin.rc │ ├── smakefile.ppc │ ├── sym.dfn │ ├── sym.out │ ├── symbols.def │ ├── symbols.dfn │ └── vers.dfn ├── stamp-h1 ├── test-pngtest.sh ├── test-pngvalid-full.sh └── test-pngvalid-simple.sh ├── libsdl ├── .DISABLED-hgeol ├── .hgignore ├── .hgtags ├── .indent.pro ├── Android.mk ├── BUGS ├── CMakeLists.txt ├── COPYING ├── CREDITS ├── INSTALL ├── Makefile ├── Makefile.ds ├── Makefile.in ├── Makefile.minimal ├── Makefile.pandora ├── Makefile.rules ├── Makefile.wiz ├── README ├── README-SDL.txt ├── README.DirectFB ├── README.HG ├── README.MacOSX ├── README.Platforms ├── README.Porting ├── README.WinCE ├── README.android ├── README.cmake ├── README.ds ├── README.gesture ├── README.iOS ├── README.pandora ├── README.touch ├── SDL2.spec ├── SDL2.spec.in ├── TODO ├── UNDER_CONSTRUCTION.txt ├── VisualC.html ├── VisualC │ ├── SDL │ │ ├── SDL_VS2008.vcproj │ │ ├── SDL_VS2010.vcxproj │ │ └── SDL_VS2012.vcxproj │ ├── SDL_VS2008.sln │ ├── SDL_VS2010.sln │ ├── SDL_VS2012.sln │ ├── SDLmain │ │ ├── SDLmain_VS2008.vcproj │ │ ├── SDLmain_VS2010.vcxproj │ │ └── SDLmain_VS2012.vcxproj │ ├── SDLtest │ │ ├── SDLtest_VS2008.vcproj │ │ ├── SDLtest_VS2010.vcxproj │ │ └── SDLtest_VS2012.vcxproj │ ├── clean.sh │ └── tests │ │ ├── automated │ │ ├── automated_VS2008.vcproj │ │ ├── automated_VS2010.vcxproj │ │ └── automated_VS2012.vcxproj │ │ ├── checkkeys │ │ ├── checkkeys_VS2008.vcproj │ │ ├── checkkeys_VS2010.vcxproj │ │ └── checkkeys_VS2012.vcxproj │ │ ├── graywin │ │ ├── graywin_VS2008.vcproj │ │ └── graywin_VS2010.vcxproj │ │ ├── loopwave │ │ ├── loopwave_VS2008.vcproj │ │ ├── loopwave_VS2010.vcxproj │ │ └── loopwave_VS2012.vcxproj │ │ ├── testalpha │ │ ├── testalpha_VS2008.vcproj │ │ └── testalpha_VS2010.vcxproj │ │ ├── testatomic │ │ ├── testatomic_VS2008.vcproj │ │ └── testatomic_VS2010.vcxproj │ │ ├── testautomation │ │ ├── testautomation_vs2010.vcxproj │ │ └── testautomation_vs2012.vcxproj │ │ ├── testcursor │ │ ├── testcursor_VS2008.vcproj │ │ └── testcursor_VS2010.vcxproj │ │ ├── testdraw2 │ │ ├── testdraw2_VS2008.vcproj │ │ ├── testdraw2_VS2010.vcxproj │ │ └── testdraw2_VS2012.vcxproj │ │ ├── testfile │ │ ├── testfile_VS2008.vcproj │ │ ├── testfile_VS2010.vcxproj │ │ └── testfile_VS2012.vcxproj │ │ ├── testgamecontroller │ │ └── testgamecontroller_VS2010.vcxproj │ │ ├── testgamma │ │ ├── testgamma_VS2008.vcproj │ │ └── testgamma_VS2010.vcxproj │ │ ├── testgesture │ │ ├── testgesture_VS2008.vcproj │ │ └── testgesture_VS2010.vcxproj │ │ ├── testgl │ │ ├── testgl_VS2008.vcproj │ │ └── testgl_VS2010.vcxproj │ │ ├── testgl2 │ │ ├── testgl2_VS2008.vcproj │ │ ├── testgl2_VS2010.vcxproj │ │ └── testgl2_VS2012.vcxproj │ │ ├── testjoystick │ │ ├── testjoystick_VS2008.vcproj │ │ └── testjoystick_VS2010.vcxproj │ │ ├── testoverlay │ │ ├── testoverlay_VS2008.vcproj │ │ └── testoverlay_VS2010.vcxproj │ │ ├── testoverlay2 │ │ ├── testoverlay2_VS2008.vcproj │ │ └── testoverlay2_VS2010.vcxproj │ │ ├── testplatform │ │ ├── testplatform_VS2008.vcproj │ │ ├── testplatform_VS2010.vcxproj │ │ └── testplatform_VS2012.vcxproj │ │ ├── testpower │ │ ├── testpower_VS2008.vcproj │ │ ├── testpower_VS2010.vcxproj │ │ └── testpower_VS2012.vcxproj │ │ ├── testrendertarget │ │ ├── testrendertarget_VS2008.vcproj │ │ └── testrendertarget_VS2010.vcxproj │ │ ├── testscale │ │ ├── testscale_VS2008.vcproj │ │ └── testscale_VS2010.vcxproj │ │ ├── testshape │ │ ├── testshape_VS2008.vcproj │ │ ├── testshape_VS2010.vcxproj │ │ └── testshape_VS2012.vcxproj │ │ ├── testsprite │ │ ├── testsprite_VS2008.vcproj │ │ └── testsprite_VS2010.vcxproj │ │ ├── testsprite2 │ │ ├── testsprite2_VS2008.vcproj │ │ ├── testsprite2_VS2010.vcxproj │ │ └── testsprite2_VS2012.vcxproj │ │ ├── testvidinfo │ │ ├── testvidinfo_VS2008.vcproj │ │ └── testvidinfo_VS2010.vcxproj │ │ ├── testwin │ │ ├── testwin_VS2008.vcproj │ │ └── testwin_VS2010.vcxproj │ │ └── testwm │ │ ├── testwm_VS2008.vcproj │ │ └── testwm_VS2010.vcxproj ├── WhatsNew ├── Xcode-iOS │ ├── Demos │ │ ├── Default.png │ │ ├── Demos.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── new.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── new.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Accel.xcscheme │ │ │ │ ├── Fireworks.xcscheme │ │ │ │ ├── Happy.xcscheme │ │ │ │ ├── Keyboard.xcscheme │ │ │ │ ├── Mixer.xcscheme │ │ │ │ ├── Rectangles.xcscheme │ │ │ │ ├── Touch.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── Info.plist │ │ ├── README │ │ ├── data │ │ │ ├── bitmapfont │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ └── license.txt │ │ │ ├── drums │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ ├── ds_china.wav │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ ├── ship.bmp │ │ │ ├── space.bmp │ │ │ └── stroke.bmp │ │ └── src │ │ │ ├── accelerometer.c │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── fireworks.c │ │ │ ├── happy.c │ │ │ ├── keyboard.c │ │ │ ├── mixer.c │ │ │ ├── rectangles.c │ │ │ └── touch.c │ ├── SDL │ │ ├── SDL.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ │ └── new.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── PrepareXcodeProjectTemplate.xcscheme │ │ │ │ ├── libSDL.xcscheme │ │ │ │ ├── testsdl.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ └── testsdl-Info.plist │ ├── Template │ │ └── SDL iOS Application │ │ │ ├── Default.png │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── TemplateInfo.plist │ │ │ └── project.pbxproj │ │ │ └── main.c │ └── Test │ │ ├── Info.plist │ │ ├── README │ │ └── TestiPhoneOS.xcodeproj │ │ └── project.pbxproj ├── Xcode │ ├── SDL │ │ ├── Info-Framework.plist │ │ ├── SDL.xcodeproj │ │ │ └── project.pbxproj │ │ ├── pkg-support │ │ │ ├── Readme SDL Developer.txt │ │ │ ├── SDL-devel.info │ │ │ ├── SDL.info │ │ │ ├── devel-resources │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Welcome.txt │ │ │ │ └── install.sh │ │ │ ├── resources │ │ │ │ ├── License.txt │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── ReadMeDevLite.txt │ │ │ │ └── SDL_DS_Store │ │ │ └── sdl_logo.pdf │ │ └── testsdl-Info.plist │ ├── SDLTest │ │ ├── Info-checkkeys__Upgraded_.plist │ │ ├── Info-graywin__Upgraded_.plist │ │ ├── Info-loopwave__Upgraded_.plist │ │ ├── Info-testalpha__Upgraded_.plist │ │ ├── Info-testatomic.plist │ │ ├── Info-testaudioinfo.plist │ │ ├── Info-testbitmap__Upgraded_.plist │ │ ├── Info-testblitspeed.plist │ │ ├── Info-testcursor.plist │ │ ├── Info-testdraw2.plist │ │ ├── Info-testdyngl.plist │ │ ├── Info-testerror__Upgraded_.plist │ │ ├── Info-testfile.plist │ │ ├── Info-testgamma__Upgraded_.plist │ │ ├── Info-testgl2.plist │ │ ├── Info-testgl__Upgraded_.plist │ │ ├── Info-testhaptic.plist │ │ ├── Info-testiconv.plist │ │ ├── Info-testime.plist │ │ ├── Info-testintersections.plist │ │ ├── Info-testjoystick__Upgraded_.plist │ │ ├── Info-testkeys__Upgraded_.plist │ │ ├── Info-testloadso.plist │ │ ├── Info-testlock__Upgraded_.plist │ │ ├── Info-testmousetablet.plist │ │ ├── Info-testmultiaudio.plist │ │ ├── Info-testnativecocoa.plist │ │ ├── Info-testnativex11.plist │ │ ├── Info-testoverlay2.plist │ │ ├── Info-testoverlay__Upgraded_.plist │ │ ├── Info-testpalette__Upgraded_.plist │ │ ├── Info-testplatform.plist │ │ ├── Info-testpower.plist │ │ ├── Info-testresample.plist │ │ ├── Info-testsem__Upgraded_.plist │ │ ├── Info-testsprite2.plist │ │ ├── Info-testsprite__Upgraded_.plist │ │ ├── Info-testthread__Upgraded_.plist │ │ ├── Info-testtimer__Upgraded_.plist │ │ ├── Info-testtypes__Upgraded_.plist │ │ ├── Info-testversion__Upgraded_.plist │ │ ├── Info-testvidinfo__Upgraded_.plist │ │ ├── Info-testwin__Upgraded_.plist │ │ ├── Info-testwm2.plist │ │ ├── Info-testwm__Upgraded_.plist │ │ ├── Info-threadwin__Upgraded_.plist │ │ ├── Info-torturethread__Upgraded_.plist │ │ ├── SDLTest.xcodeproj │ │ │ └── project.pbxproj │ │ ├── sdlcommon_prefix.h │ │ └── testgamecontroller-Info.plist │ ├── TemplatesForXcodeLeopard │ │ ├── SDL Application │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ └── main.c │ │ ├── SDL Cocoa Application │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── SDLMain.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ └── main.c │ │ └── SDL OpenGL Application │ │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── TemplateInfo.plist │ │ │ └── project.pbxproj │ │ │ ├── atlantis │ │ │ ├── atlantis.c │ │ │ ├── atlantis.h │ │ │ ├── dolphin.c │ │ │ ├── shark.c │ │ │ ├── swim.c │ │ │ └── whale.c │ │ │ └── main.c │ ├── TemplatesForXcodeSnowLeopard │ │ ├── SDL Application │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ └── main.c │ │ ├── SDL Cocoa Application │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── SDLMain.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ └── main.c │ │ └── SDL OpenGL Application │ │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── ___PROJECTNAMEASIDENTIFIER____Prefix.pch │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── TemplateInfo.plist │ │ │ └── project.pbxproj │ │ │ ├── atlantis │ │ │ ├── atlantis.c │ │ │ ├── atlantis.h │ │ │ ├── dolphin.c │ │ │ ├── shark.c │ │ │ ├── swim.c │ │ │ └── whale.c │ │ │ └── main.c │ ├── TemplatesForXcodeTiger │ │ ├── SDL Application │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── SDLApp.xcodeproj │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ ├── SDLApp_Prefix.pch │ │ │ └── main.c │ │ ├── SDL Cocoa Application │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── SDLMain.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ ├── Info.plist │ │ │ ├── SDLApp_Prefix.pch │ │ │ ├── SDLCocoaApp.xcodeproj │ │ │ │ ├── TemplateInfo.plist │ │ │ │ └── project.pbxproj │ │ │ └── main.c │ │ └── SDL OpenGL Application │ │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── SDLApp_Prefix.pch │ │ │ ├── SDLOpenGLApp.xcodeproj │ │ │ ├── TemplateInfo.plist │ │ │ └── project.pbxproj │ │ │ ├── atlantis │ │ │ ├── atlantis.c │ │ │ ├── atlantis.h │ │ │ ├── dolphin.c │ │ │ ├── shark.c │ │ │ ├── swim.c │ │ │ └── whale.c │ │ │ └── main.c │ ├── XcodeDocSet │ │ └── Doxyfile │ ├── package │ ├── stationary.csh │ └── uninstall.csh ├── acinclude │ ├── ac_check_define.m4 │ ├── alsa.m4 │ ├── ax_check_compiler_flags.m4 │ ├── ax_gcc_archflag.m4 │ ├── ax_gcc_x86_cpuid.m4.htm │ ├── esd.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── aclocal.m4 ├── android-project │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.properties │ ├── build.xml │ ├── default.properties │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── src │ │ │ └── Android.mk │ ├── local.properties │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── libsdl │ │ └── app │ │ └── SDLActivity.java ├── autogen.sh ├── build-scripts │ ├── config.guess │ ├── config.sub │ ├── fatbuild.sh │ ├── install-sh │ ├── iosbuild.sh │ ├── ltmain.sh │ ├── mkinstalldirs │ ├── showrev.sh │ ├── strip_fPIC.sh │ └── updaterev.sh ├── build │ ├── .libs │ │ ├── libSDL2.a │ │ ├── libSDL2.la │ │ └── libSDL2.lai │ ├── SDL.d │ ├── SDL.lo │ ├── SDL_RLEaccel.d │ ├── SDL_RLEaccel.lo │ ├── SDL_assert.d │ ├── SDL_assert.lo │ ├── SDL_atomic.d │ ├── SDL_atomic.lo │ ├── SDL_audio.d │ ├── SDL_audio.lo │ ├── SDL_audiocvt.d │ ├── SDL_audiocvt.lo │ ├── SDL_audiodev.d │ ├── SDL_audiodev.lo │ ├── SDL_audiotypecvt.d │ ├── SDL_audiotypecvt.lo │ ├── SDL_blendfillrect.d │ ├── SDL_blendfillrect.lo │ ├── SDL_blendline.d │ ├── SDL_blendline.lo │ ├── SDL_blendpoint.d │ ├── SDL_blendpoint.lo │ ├── SDL_blit.d │ ├── SDL_blit.lo │ ├── SDL_blit_0.d │ ├── SDL_blit_0.lo │ ├── SDL_blit_1.d │ ├── SDL_blit_1.lo │ ├── SDL_blit_A.d │ ├── SDL_blit_A.lo │ ├── SDL_blit_N.d │ ├── SDL_blit_N.lo │ ├── SDL_blit_auto.d │ ├── SDL_blit_auto.lo │ ├── SDL_blit_copy.d │ ├── SDL_blit_copy.lo │ ├── SDL_blit_slow.d │ ├── SDL_blit_slow.lo │ ├── SDL_bmp.d │ ├── SDL_bmp.lo │ ├── SDL_clipboard.d │ ├── SDL_clipboard.lo │ ├── SDL_clipboardevents.d │ ├── SDL_clipboardevents.lo │ ├── SDL_cpuinfo.d │ ├── SDL_cpuinfo.lo │ ├── SDL_diskaudio.d │ ├── SDL_diskaudio.lo │ ├── SDL_drawline.d │ ├── SDL_drawline.lo │ ├── SDL_drawpoint.d │ ├── SDL_drawpoint.lo │ ├── SDL_dropevents.d │ ├── SDL_dropevents.lo │ ├── SDL_dummy_main.d │ ├── SDL_dummy_main.lo │ ├── SDL_dummyaudio.d │ ├── SDL_dummyaudio.lo │ ├── SDL_error.d │ ├── SDL_error.lo │ ├── SDL_events.d │ ├── SDL_events.lo │ ├── SDL_fatal.d │ ├── SDL_fatal.lo │ ├── SDL_fillrect.d │ ├── SDL_fillrect.lo │ ├── SDL_gamecontroller.d │ ├── SDL_gamecontroller.lo │ ├── SDL_gesture.d │ ├── SDL_gesture.lo │ ├── SDL_getenv.d │ ├── SDL_getenv.lo │ ├── SDL_haptic.d │ ├── SDL_haptic.lo │ ├── SDL_hints.d │ ├── SDL_hints.lo │ ├── SDL_iconv.d │ ├── SDL_iconv.lo │ ├── SDL_joystick.d │ ├── SDL_joystick.lo │ ├── SDL_keyboard.d │ ├── SDL_keyboard.lo │ ├── SDL_libgl2D.d │ ├── SDL_libgl2D.lo │ ├── SDL_log.d │ ├── SDL_log.lo │ ├── SDL_malloc.d │ ├── SDL_malloc.lo │ ├── SDL_mixer.d │ ├── SDL_mixer.lo │ ├── SDL_mouse.d │ ├── SDL_mouse.lo │ ├── SDL_ndsrender.d │ ├── SDL_ndsrender.lo │ ├── SDL_nullevents.d │ ├── SDL_nullevents.lo │ ├── SDL_nullframebuffer.d │ ├── SDL_nullframebuffer.lo │ ├── SDL_nullvideo.d │ ├── SDL_nullvideo.lo │ ├── SDL_pixels.d │ ├── SDL_pixels.lo │ ├── SDL_power.d │ ├── SDL_power.lo │ ├── SDL_qsort.d │ ├── SDL_qsort.lo │ ├── SDL_quit.d │ ├── SDL_quit.lo │ ├── SDL_rect.d │ ├── SDL_rect.lo │ ├── SDL_render.d │ ├── SDL_render.lo │ ├── SDL_render_d3d.d │ ├── SDL_render_d3d.lo │ ├── SDL_render_gl.d │ ├── SDL_render_gl.lo │ ├── SDL_render_gles.d │ ├── SDL_render_gles.lo │ ├── SDL_render_gles2.d │ ├── SDL_render_gles2.lo │ ├── SDL_render_sw.d │ ├── SDL_render_sw.lo │ ├── SDL_rotate.d │ ├── SDL_rotate.lo │ ├── SDL_rwops.d │ ├── SDL_rwops.lo │ ├── SDL_shaders_gl.d │ ├── SDL_shaders_gl.lo │ ├── SDL_shaders_gles2.d │ ├── SDL_shaders_gles2.lo │ ├── SDL_shape.d │ ├── SDL_shape.lo │ ├── SDL_spinlock.d │ ├── SDL_spinlock.lo │ ├── SDL_stdlib.d │ ├── SDL_stdlib.lo │ ├── SDL_stretch.d │ ├── SDL_stretch.lo │ ├── SDL_string.d │ ├── SDL_string.lo │ ├── SDL_surface.d │ ├── SDL_surface.lo │ ├── SDL_syscond.d │ ├── SDL_syscond.lo │ ├── SDL_syshaptic.d │ ├── SDL_syshaptic.lo │ ├── SDL_sysjoystick.d │ ├── SDL_sysjoystick.lo │ ├── SDL_sysloadso.d │ ├── SDL_sysloadso.lo │ ├── SDL_sysmutex.d │ ├── SDL_sysmutex.lo │ ├── SDL_syspower.d │ ├── SDL_syspower.lo │ ├── SDL_syssem.d │ ├── SDL_syssem.lo │ ├── SDL_systhread.d │ ├── SDL_systhread.lo │ ├── SDL_systimer.d │ ├── SDL_systimer.lo │ ├── SDL_test_assert.d │ ├── SDL_test_assert.lo │ ├── SDL_test_common.d │ ├── SDL_test_common.lo │ ├── SDL_test_compare.d │ ├── SDL_test_compare.lo │ ├── SDL_test_crc32.d │ ├── SDL_test_crc32.lo │ ├── SDL_test_font.d │ ├── SDL_test_font.lo │ ├── SDL_test_fuzzer.d │ ├── SDL_test_fuzzer.lo │ ├── SDL_test_harness.d │ ├── SDL_test_harness.lo │ ├── SDL_test_imageBlit.d │ ├── SDL_test_imageBlit.lo │ ├── SDL_test_imageBlitBlend.d │ ├── SDL_test_imageBlitBlend.lo │ ├── SDL_test_imageFace.d │ ├── SDL_test_imageFace.lo │ ├── SDL_test_imagePrimitives.d │ ├── SDL_test_imagePrimitives.lo │ ├── SDL_test_imagePrimitivesBlend.d │ ├── SDL_test_imagePrimitivesBlend.lo │ ├── SDL_test_log.d │ ├── SDL_test_log.lo │ ├── SDL_test_md5.d │ ├── SDL_test_md5.lo │ ├── SDL_test_random.d │ ├── SDL_test_random.lo │ ├── SDL_thread.d │ ├── SDL_thread.lo │ ├── SDL_timer.d │ ├── SDL_timer.lo │ ├── SDL_touch.d │ ├── SDL_touch.lo │ ├── SDL_video.d │ ├── SDL_video.lo │ ├── SDL_wave.d │ ├── SDL_wave.lo │ ├── SDL_windowevents.d │ ├── SDL_windowevents.lo │ ├── SDL_x11clipboard.d │ ├── SDL_x11clipboard.lo │ ├── SDL_x11dyn.d │ ├── SDL_x11dyn.lo │ ├── SDL_x11events.d │ ├── SDL_x11events.lo │ ├── SDL_x11framebuffer.d │ ├── SDL_x11framebuffer.lo │ ├── SDL_x11keyboard.d │ ├── SDL_x11keyboard.lo │ ├── SDL_x11messagebox.d │ ├── SDL_x11messagebox.lo │ ├── SDL_x11modes.d │ ├── SDL_x11modes.lo │ ├── SDL_x11mouse.d │ ├── SDL_x11mouse.lo │ ├── SDL_x11opengl.d │ ├── SDL_x11opengl.lo │ ├── SDL_x11opengles.d │ ├── SDL_x11opengles.lo │ ├── SDL_x11shape.d │ ├── SDL_x11shape.lo │ ├── SDL_x11touch.d │ ├── SDL_x11touch.lo │ ├── SDL_x11video.d │ ├── SDL_x11video.lo │ ├── SDL_x11window.d │ ├── SDL_x11window.lo │ ├── SDL_x11xinput2.d │ ├── SDL_x11xinput2.lo │ ├── SDL_yuv_mmx.d │ ├── SDL_yuv_mmx.lo │ ├── SDL_yuv_sw.d │ ├── SDL_yuv_sw.lo │ ├── e_atan2.d │ ├── e_atan2.lo │ ├── e_log.d │ ├── e_log.lo │ ├── e_pow.d │ ├── e_pow.lo │ ├── e_rem_pio2.d │ ├── e_rem_pio2.lo │ ├── e_sqrt.d │ ├── e_sqrt.lo │ ├── edid-parse.d │ ├── edid-parse.lo │ ├── imKStoUCS.d │ ├── imKStoUCS.lo │ ├── k_cos.d │ ├── k_cos.lo │ ├── k_rem_pio2.d │ ├── k_rem_pio2.lo │ ├── k_sin.d │ ├── k_sin.lo │ ├── libSDL2.la │ ├── libSDL2_test.a │ ├── libSDL2main.a │ ├── s_atan.d │ ├── s_atan.lo │ ├── s_copysign.d │ ├── s_copysign.lo │ ├── s_cos.d │ ├── s_cos.lo │ ├── s_fabs.d │ ├── s_fabs.lo │ ├── s_floor.d │ ├── s_floor.lo │ ├── s_scalbn.d │ ├── s_scalbn.lo │ ├── s_sin.d │ └── s_sin.lo ├── cmake │ ├── macros.cmake │ └── sdlchecks.cmake ├── config.log ├── config.status ├── configure ├── configure.in ├── e ├── include │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h.cmake │ ├── SDL_config.h.in │ ├── SDL_config_android.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_nintendods.h │ ├── SDL_config_pandora.h │ ├── SDL_config_windows.h │ ├── SDL_config_wiz.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_input.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ ├── close_code.h │ └── doxyfile ├── libtool ├── sdl2-config ├── sdl2-config.in ├── sdl2.m4 ├── sdl2.pc ├── sdl2.pc.in ├── src │ ├── SDL.c │ ├── SDL_assert.c │ ├── SDL_assert_c.h │ ├── SDL_error.c │ ├── SDL_error_c.h │ ├── SDL_fatal.c │ ├── SDL_fatal.h │ ├── SDL_hints.c │ ├── SDL_hints_c.h │ ├── SDL_log.c │ ├── atomic │ │ ├── SDL_atomic.c │ │ └── SDL_spinlock.c │ ├── audio │ │ ├── SDL_audio.c │ │ ├── SDL_audio_c.h │ │ ├── SDL_audiocvt.c │ │ ├── SDL_audiodev.c │ │ ├── SDL_audiodev_c.h │ │ ├── SDL_audiomem.h │ │ ├── SDL_audiotypecvt.c │ │ ├── SDL_mixer.c │ │ ├── SDL_sysaudio.h │ │ ├── SDL_wave.c │ │ ├── SDL_wave.h │ │ ├── alsa │ │ │ ├── SDL_alsa_audio.c │ │ │ └── SDL_alsa_audio.h │ │ ├── android │ │ │ ├── SDL_androidaudio.c │ │ │ └── SDL_androidaudio.h │ │ ├── arts │ │ │ ├── SDL_artsaudio.c │ │ │ └── SDL_artsaudio.h │ │ ├── baudio │ │ │ ├── SDL_beaudio.cc │ │ │ └── SDL_beaudio.h │ │ ├── bsd │ │ │ ├── SDL_bsdaudio.c │ │ │ └── SDL_bsdaudio.h │ │ ├── coreaudio │ │ │ ├── SDL_coreaudio.c │ │ │ └── SDL_coreaudio.h │ │ ├── directsound │ │ │ ├── SDL_directsound.c │ │ │ ├── SDL_directsound.h │ │ │ └── directx.h │ │ ├── disk │ │ │ ├── SDL_diskaudio.c │ │ │ └── SDL_diskaudio.h │ │ ├── dsp │ │ │ ├── SDL_dspaudio.c │ │ │ └── SDL_dspaudio.h │ │ ├── dummy │ │ │ ├── SDL_dummyaudio.c │ │ │ └── SDL_dummyaudio.h │ │ ├── esd │ │ │ ├── SDL_esdaudio.c │ │ │ └── SDL_esdaudio.h │ │ ├── fusionsound │ │ │ ├── SDL_fsaudio.c │ │ │ └── SDL_fsaudio.h │ │ ├── nas │ │ │ ├── SDL_nasaudio.c │ │ │ └── SDL_nasaudio.h │ │ ├── nds │ │ │ ├── SDL_ndsaudio.c │ │ │ └── SDL_ndsaudio.h │ │ ├── paudio │ │ │ ├── SDL_paudio.c │ │ │ └── SDL_paudio.h │ │ ├── pulseaudio │ │ │ ├── SDL_pulseaudio.c │ │ │ └── SDL_pulseaudio.h │ │ ├── qsa │ │ │ ├── SDL_qsa_audio.c │ │ │ └── SDL_qsa_audio.h │ │ ├── sdlgenaudiocvt.pl │ │ ├── sun │ │ │ ├── SDL_sunaudio.c │ │ │ └── SDL_sunaudio.h │ │ ├── winmm │ │ │ ├── SDL_winmm.c │ │ │ └── SDL_winmm.h │ │ └── xaudio2 │ │ │ └── SDL_xaudio2.c │ ├── core │ │ ├── android │ │ │ ├── SDL_android.cpp │ │ │ └── SDL_android.h │ │ └── windows │ │ │ ├── SDL_windows.c │ │ │ └── SDL_windows.h │ ├── cpuinfo │ │ └── SDL_cpuinfo.c │ ├── events │ │ ├── SDL_clipboardevents.c │ │ ├── SDL_clipboardevents_c.h │ │ ├── SDL_dropevents.c │ │ ├── SDL_dropevents_c.h │ │ ├── SDL_events.c │ │ ├── SDL_events_c.h │ │ ├── SDL_gesture.c │ │ ├── SDL_gesture_c.h │ │ ├── SDL_keyboard.c │ │ ├── SDL_keyboard_c.h │ │ ├── SDL_mouse.c │ │ ├── SDL_mouse_c.h │ │ ├── SDL_quit.c │ │ ├── SDL_sysevents.h │ │ ├── SDL_touch.c │ │ ├── SDL_touch_c.h │ │ ├── SDL_windowevents.c │ │ ├── SDL_windowevents_c.h │ │ ├── blank_cursor.h │ │ ├── default_cursor.h │ │ ├── nds │ │ │ └── SDL_ndsgesture.c │ │ ├── scancodes_darwin.h │ │ ├── scancodes_linux.h │ │ ├── scancodes_windows.h │ │ └── scancodes_xfree86.h │ ├── file │ │ ├── SDL_rwops.c │ │ └── cocoa │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ └── SDL_rwopsbundlesupport.m │ ├── haptic │ │ ├── SDL_haptic.c │ │ ├── SDL_haptic_c.h │ │ ├── SDL_syshaptic.h │ │ ├── darwin │ │ │ └── SDL_syshaptic.c │ │ ├── dummy │ │ │ └── SDL_syshaptic.c │ │ ├── linux │ │ │ └── SDL_syshaptic.c │ │ ├── nds │ │ │ └── SDL_syshaptic.c │ │ └── windows │ │ │ └── SDL_syshaptic.c │ ├── joystick │ │ ├── SDL_gamecontroller.c │ │ ├── SDL_joystick.c │ │ ├── SDL_joystick_c.h │ │ ├── SDL_sysjoystick.h │ │ ├── android │ │ │ └── SDL_sysjoystick.c │ │ ├── beos │ │ │ └── SDL_bejoystick.cc │ │ ├── bsd │ │ │ └── SDL_sysjoystick.c │ │ ├── darwin │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── dummy │ │ │ └── SDL_sysjoystick.c │ │ ├── iphoneos │ │ │ ├── SDLUIAccelerationDelegate.h │ │ │ ├── SDLUIAccelerationDelegate.m │ │ │ └── SDL_sysjoystick.m │ │ ├── linux │ │ │ ├── SDL_sysjoystick.c │ │ │ └── SDL_sysjoystick_c.h │ │ ├── nds │ │ │ └── SDL_sysjoystick.c │ │ └── windows │ │ │ ├── SDL_dxjoystick.c │ │ │ ├── SDL_dxjoystick_c.h │ │ │ └── SDL_mmjoystick.c │ ├── libm │ │ ├── e_atan2.c │ │ ├── e_log.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_sqrt.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── math_libm.h │ │ ├── math_private.h │ │ ├── s_atan.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_fabs.c │ │ ├── s_floor.c │ │ ├── s_scalbn.c │ │ └── s_sin.c │ ├── loadso │ │ ├── beos │ │ │ └── SDL_sysloadso.c │ │ ├── dlopen │ │ │ └── SDL_sysloadso.c │ │ ├── dummy │ │ │ └── SDL_sysloadso.c │ │ └── windows │ │ │ └── SDL_sysloadso.c │ ├── main │ │ ├── android │ │ │ └── SDL_android_main.cpp │ │ ├── beos │ │ │ ├── SDL_BApp.h │ │ │ ├── SDL_BeApp.cc │ │ │ └── SDL_BeApp.h │ │ ├── dummy │ │ │ └── SDL_dummy_main.c │ │ └── windows │ │ │ ├── SDL_windows_main.c │ │ │ └── version.rc │ ├── power │ │ ├── SDL_power.c │ │ ├── android │ │ │ └── SDL_syspower.c │ │ ├── beos │ │ │ └── SDL_syspower.c │ │ ├── linux │ │ │ └── SDL_syspower.c │ │ ├── macosx │ │ │ └── SDL_syspower.c │ │ ├── nds │ │ │ └── SDL_syspower.c │ │ ├── uikit │ │ │ ├── SDL_syspower.h │ │ │ └── SDL_syspower.m │ │ └── windows │ │ │ └── SDL_syspower.c │ ├── render │ │ ├── SDL_render.c │ │ ├── SDL_sysrender.h │ │ ├── SDL_yuv_mmx.c │ │ ├── SDL_yuv_sw.c │ │ ├── SDL_yuv_sw_c.h │ │ ├── direct3d │ │ │ └── SDL_render_d3d.c │ │ ├── mmx.h │ │ ├── nds │ │ │ ├── SDL_libgl2D.c │ │ │ ├── SDL_libgl2D.h │ │ │ └── SDL_ndsrender.c │ │ ├── opengl │ │ │ ├── SDL_glfuncs.h │ │ │ ├── SDL_render_gl.c │ │ │ ├── SDL_shaders_gl.c │ │ │ └── SDL_shaders_gl.h │ │ ├── opengles │ │ │ ├── SDL_glesfuncs.h │ │ │ └── SDL_render_gles.c │ │ ├── opengles2 │ │ │ ├── SDL_gles2funcs.h │ │ │ ├── SDL_render_gles2.c │ │ │ ├── SDL_shaders_gles2.c │ │ │ └── SDL_shaders_gles2.h │ │ └── software │ │ │ ├── SDL_blendfillrect.c │ │ │ ├── SDL_blendfillrect.h │ │ │ ├── SDL_blendline.c │ │ │ ├── SDL_blendline.h │ │ │ ├── SDL_blendpoint.c │ │ │ ├── SDL_blendpoint.h │ │ │ ├── SDL_draw.h │ │ │ ├── SDL_drawline.c │ │ │ ├── SDL_drawline.h │ │ │ ├── SDL_drawpoint.c │ │ │ ├── SDL_drawpoint.h │ │ │ ├── SDL_render_sw.c │ │ │ ├── SDL_render_sw_c.h │ │ │ ├── SDL_rotate.c │ │ │ └── SDL_rotate.h │ ├── stdlib │ │ ├── SDL_getenv.c │ │ ├── SDL_iconv.c │ │ ├── SDL_malloc.c │ │ ├── SDL_qsort.c │ │ ├── SDL_stdlib.c │ │ └── SDL_string.c │ ├── test │ │ ├── SDL_test_assert.c │ │ ├── SDL_test_common.c │ │ ├── SDL_test_compare.c │ │ ├── SDL_test_crc32.c │ │ ├── SDL_test_font.c │ │ ├── SDL_test_fuzzer.c │ │ ├── SDL_test_harness.c │ │ ├── SDL_test_imageBlit.c │ │ ├── SDL_test_imageBlitBlend.c │ │ ├── SDL_test_imageFace.c │ │ ├── SDL_test_imagePrimitives.c │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ ├── SDL_test_log.c │ │ ├── SDL_test_md5.c │ │ └── SDL_test_random.c │ ├── thread │ │ ├── SDL_systhread.h │ │ ├── SDL_thread.c │ │ ├── SDL_thread_c.h │ │ ├── beos │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── generic │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── nds │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_syscond_c.h │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_syssem_c.h │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ ├── pthread │ │ │ ├── SDL_syscond.c │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_sysmutex_c.h │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ │ └── windows │ │ │ ├── SDL_sysmutex.c │ │ │ ├── SDL_syssem.c │ │ │ ├── SDL_systhread.c │ │ │ └── SDL_systhread_c.h │ ├── timer │ │ ├── SDL_timer.c │ │ ├── SDL_timer_c.h │ │ ├── beos │ │ │ └── SDL_systimer.c │ │ ├── dummy │ │ │ └── SDL_systimer.c │ │ ├── nds │ │ │ └── SDL_systimer.c │ │ ├── unix │ │ │ └── SDL_systimer.c │ │ └── windows │ │ │ └── SDL_systimer.c │ └── video │ │ ├── SDL_RLEaccel.c │ │ ├── SDL_RLEaccel_c.h │ │ ├── SDL_blit.c │ │ ├── SDL_blit.h │ │ ├── SDL_blit_0.c │ │ ├── SDL_blit_1.c │ │ ├── SDL_blit_A.c │ │ ├── SDL_blit_N.c │ │ ├── SDL_blit_auto.c │ │ ├── SDL_blit_auto.h │ │ ├── SDL_blit_copy.c │ │ ├── SDL_blit_copy.h │ │ ├── SDL_blit_slow.c │ │ ├── SDL_blit_slow.h │ │ ├── SDL_bmp.c │ │ ├── SDL_clipboard.c │ │ ├── SDL_fillrect.c │ │ ├── SDL_pixels.c │ │ ├── SDL_pixels_c.h │ │ ├── SDL_rect.c │ │ ├── SDL_rect_c.h │ │ ├── SDL_shape.c │ │ ├── SDL_shape_internals.h │ │ ├── SDL_stretch.c │ │ ├── SDL_surface.c │ │ ├── SDL_sysvideo.h │ │ ├── SDL_video.c │ │ ├── android │ │ ├── SDL_androidclipboard.c │ │ ├── SDL_androidclipboard.h │ │ ├── SDL_androidevents.c │ │ ├── SDL_androidevents.h │ │ ├── SDL_androidgl.c │ │ ├── SDL_androidkeyboard.c │ │ ├── SDL_androidkeyboard.h │ │ ├── SDL_androidtouch.c │ │ ├── SDL_androidtouch.h │ │ ├── SDL_androidvideo.c │ │ ├── SDL_androidvideo.h │ │ ├── SDL_androidwindow.c │ │ └── SDL_androidwindow.h │ │ ├── bwindow │ │ ├── SDL_BWin.h │ │ ├── SDL_bclipboard.cc │ │ ├── SDL_bclipboard.h │ │ ├── SDL_bevents.cc │ │ ├── SDL_bevents.h │ │ ├── SDL_bframebuffer.cc │ │ ├── SDL_bframebuffer.h │ │ ├── SDL_bkeyboard.cc │ │ ├── SDL_bkeyboard.h │ │ ├── SDL_bmodes.cc │ │ ├── SDL_bmodes.h │ │ ├── SDL_bopengl.cc │ │ ├── SDL_bopengl.h │ │ ├── SDL_bvideo.cc │ │ ├── SDL_bvideo.h │ │ ├── SDL_bwindow.cc │ │ └── SDL_bwindow.h │ │ ├── cocoa │ │ ├── SDL_cocoaclipboard.h │ │ ├── SDL_cocoaclipboard.m │ │ ├── SDL_cocoaevents.h │ │ ├── SDL_cocoaevents.m │ │ ├── SDL_cocoakeyboard.h │ │ ├── SDL_cocoakeyboard.m │ │ ├── SDL_cocoamessagebox.h │ │ ├── SDL_cocoamessagebox.m │ │ ├── SDL_cocoamodes.h │ │ ├── SDL_cocoamodes.m │ │ ├── SDL_cocoamouse.h │ │ ├── SDL_cocoamouse.m │ │ ├── SDL_cocoaopengl.h │ │ ├── SDL_cocoaopengl.m │ │ ├── SDL_cocoashape.h │ │ ├── SDL_cocoashape.m │ │ ├── SDL_cocoavideo.h │ │ ├── SDL_cocoavideo.m │ │ ├── SDL_cocoawindow.h │ │ └── SDL_cocoawindow.m │ │ ├── directfb │ │ ├── SDL_DirectFB_WM.c │ │ ├── SDL_DirectFB_WM.h │ │ ├── SDL_DirectFB_dyn.c │ │ ├── SDL_DirectFB_dyn.h │ │ ├── SDL_DirectFB_events.c │ │ ├── SDL_DirectFB_events.h │ │ ├── SDL_DirectFB_modes.c │ │ ├── SDL_DirectFB_modes.h │ │ ├── SDL_DirectFB_mouse.c │ │ ├── SDL_DirectFB_mouse.h │ │ ├── SDL_DirectFB_opengl.c │ │ ├── SDL_DirectFB_opengl.h │ │ ├── SDL_DirectFB_render.c │ │ ├── SDL_DirectFB_render.h │ │ ├── SDL_DirectFB_shape.c │ │ ├── SDL_DirectFB_shape.h │ │ ├── SDL_DirectFB_video.c │ │ ├── SDL_DirectFB_video.h │ │ ├── SDL_DirectFB_window.c │ │ └── SDL_DirectFB_window.h │ │ ├── dummy │ │ ├── SDL_nullevents.c │ │ ├── SDL_nullevents_c.h │ │ ├── SDL_nullframebuffer.c │ │ ├── SDL_nullframebuffer_c.h │ │ ├── SDL_nullvideo.c │ │ └── SDL_nullvideo.h │ │ ├── nds │ │ ├── SDL_ndsevents.c │ │ ├── SDL_ndsevents_c.h │ │ ├── SDL_ndsvideo.c │ │ ├── SDL_ndsvideo.h │ │ ├── SDL_ndswindow.c │ │ └── SDL_ndswindow.h │ │ ├── pandora │ │ ├── SDL_pandora.c │ │ ├── SDL_pandora.h │ │ ├── SDL_pandora_events.c │ │ └── SDL_pandora_events.h │ │ ├── sdlgenblit.pl │ │ ├── uikit │ │ ├── SDLTextView.h │ │ ├── SDLTextView.m │ │ ├── SDLUIApplication.h │ │ ├── SDLUIApplication.m │ │ ├── SDL_uikitappdelegate.h │ │ ├── SDL_uikitappdelegate.m │ │ ├── SDL_uikitevents.h │ │ ├── SDL_uikitevents.m │ │ ├── SDL_uikitmessagebox.h │ │ ├── SDL_uikitmessagebox.m │ │ ├── SDL_uikitmodes.h │ │ ├── SDL_uikitmodes.m │ │ ├── SDL_uikitopengles.h │ │ ├── SDL_uikitopengles.m │ │ ├── SDL_uikitopenglview.h │ │ ├── SDL_uikitopenglview.m │ │ ├── SDL_uikitopenglview.m.hacked │ │ ├── SDL_uikitvideo.h │ │ ├── SDL_uikitvideo.m │ │ ├── SDL_uikitview.h │ │ ├── SDL_uikitview.m │ │ ├── SDL_uikitviewcontroller.h │ │ ├── SDL_uikitviewcontroller.m │ │ ├── SDL_uikitwindow.h │ │ ├── SDL_uikitwindow.m │ │ ├── jumphack.c │ │ ├── jumphack.h │ │ └── keyinfotable.h │ │ ├── windows │ │ ├── SDL_msctf.h │ │ ├── SDL_vkeys.h │ │ ├── SDL_windowsclipboard.c │ │ ├── SDL_windowsclipboard.h │ │ ├── SDL_windowsevents.c │ │ ├── SDL_windowsevents.h │ │ ├── SDL_windowsframebuffer.c │ │ ├── SDL_windowsframebuffer.h │ │ ├── SDL_windowskeyboard.c │ │ ├── SDL_windowskeyboard.h │ │ ├── SDL_windowsmessagebox.c │ │ ├── SDL_windowsmessagebox.h │ │ ├── SDL_windowsmodes.c │ │ ├── SDL_windowsmodes.h │ │ ├── SDL_windowsmouse.c │ │ ├── SDL_windowsmouse.h │ │ ├── SDL_windowsopengl.c │ │ ├── SDL_windowsopengl.h │ │ ├── SDL_windowsshape.c │ │ ├── SDL_windowsshape.h │ │ ├── SDL_windowsvideo.c │ │ ├── SDL_windowsvideo.h │ │ ├── SDL_windowswindow.c │ │ ├── SDL_windowswindow.h │ │ └── wmmsg.h │ │ └── x11 │ │ ├── SDL_x11clipboard.c │ │ ├── SDL_x11clipboard.h │ │ ├── SDL_x11dyn.c │ │ ├── SDL_x11dyn.h │ │ ├── SDL_x11events.c │ │ ├── SDL_x11events.h │ │ ├── SDL_x11framebuffer.c │ │ ├── SDL_x11framebuffer.h │ │ ├── SDL_x11keyboard.c │ │ ├── SDL_x11keyboard.h │ │ ├── SDL_x11messagebox.c │ │ ├── SDL_x11messagebox.h │ │ ├── SDL_x11modes.c │ │ ├── SDL_x11modes.h │ │ ├── SDL_x11mouse.c │ │ ├── SDL_x11mouse.h │ │ ├── SDL_x11opengl.c │ │ ├── SDL_x11opengl.h │ │ ├── SDL_x11opengles.c │ │ ├── SDL_x11opengles.h │ │ ├── SDL_x11shape.c │ │ ├── SDL_x11shape.h │ │ ├── SDL_x11sym.h │ │ ├── SDL_x11touch.c │ │ ├── SDL_x11touch.h │ │ ├── SDL_x11video.c │ │ ├── SDL_x11video.h │ │ ├── SDL_x11window.c │ │ ├── SDL_x11window.h │ │ ├── SDL_x11xinput2.c │ │ ├── SDL_x11xinput2.h │ │ ├── edid-parse.c │ │ ├── edid.h │ │ ├── imKStoUCS.c │ │ └── imKStoUCS.h └── test │ ├── COPYING │ ├── Makefile.in │ ├── README │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autogen.sh │ ├── automated │ ├── Makefile │ ├── README │ ├── SDL_at.c │ ├── SDL_at.h │ ├── audio │ │ ├── audio.c │ │ └── audio.h │ ├── common │ │ ├── common.c │ │ ├── common.h │ │ ├── images.h │ │ ├── img_blit.c │ │ ├── img_blitblend.c │ │ ├── img_face.c │ │ ├── img_primitives.c │ │ └── img_primitivesblend.c │ ├── platform │ │ ├── platform.c │ │ └── platform.h │ ├── rect │ │ ├── rect.c │ │ └── rect.h │ ├── render │ │ ├── render.c │ │ └── render.h │ ├── rwops │ │ ├── TestSupportRWops.h │ │ ├── TestSupportRWops_Cocoa.m │ │ ├── TestSupportRWops_Generic.c │ │ ├── read │ │ ├── rwops.c │ │ └── rwops.h │ ├── surface │ │ ├── surface.c │ │ └── surface.h │ └── testsdl.c │ ├── checkkeys.c │ ├── configure │ ├── configure.in │ ├── gcc-fat.sh │ ├── loopwave.c │ ├── moose.dat │ ├── nds-test-progs │ ├── Makefile │ ├── general │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── testscale │ │ └── Makefile │ ├── testsprite2 │ │ └── Makefile │ └── testspriteminimal │ │ └── Makefile │ ├── picture.xbm │ ├── sample.bmp │ ├── sample.wav │ ├── shapes │ ├── p01_shape24.bmp │ ├── p01_shape32alpha.bmp │ ├── p01_shape8.bmp │ ├── p02_shape24.bmp │ ├── p02_shape32alpha.bmp │ ├── p02_shape8.bmp │ ├── p03_shape24.bmp │ ├── p03_shape8.bmp │ ├── p04_shape1.bmp │ ├── p04_shape24.bmp │ ├── p04_shape32alpha.bmp │ ├── p04_shape8.bmp │ ├── p05_shape8.bmp │ ├── p06_shape1alpha.bmp │ ├── p06_shape24.bmp │ ├── p06_shape32alpha.bmp │ ├── p06_shape8.bmp │ ├── p07_shape24.bmp │ ├── p07_shape32alpha.bmp │ ├── p07_shape8.bmp │ ├── p08_shape24.bmp │ ├── p08_shape32alpha.bmp │ ├── p08_shape8.bmp │ ├── p09_shape24.bmp │ ├── p09_shape32alpha.bmp │ ├── p09_shape8.bmp │ ├── p10_shape1.bmp │ ├── p10_shape24.bmp │ ├── p10_shape32alpha.bmp │ ├── p10_shape8.bmp │ ├── p11_shape24.bmp │ ├── p11_shape32alpha.bmp │ ├── p11_shape8.bmp │ ├── p12_shape24.bmp │ ├── p12_shape8.bmp │ ├── p13_shape24.bmp │ ├── p13_shape32alpha.bmp │ ├── p13_shape8.bmp │ ├── p14_shape24.bmp │ ├── p14_shape8.bmp │ ├── p15_shape24.bmp │ ├── p15_shape32alpha.bmp │ ├── p15_shape8.bmp │ ├── p16_shape1.bmp │ ├── p16_shape24.bmp │ ├── p16_shape8.bmp │ ├── trollface_24.bmp │ └── trollface_32alpha.bmp │ ├── test-automation │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── DoxyFile │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── TODO │ ├── acinclude │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── aclocal.m4 │ ├── autogen.sh │ ├── build-scripts │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── distclean.sh │ │ ├── install-runner.sh │ │ ├── install-sh │ │ ├── install-tests.sh │ │ ├── ltmain.sh │ │ └── missing │ ├── config.h.in │ ├── configure.ac │ ├── include │ │ └── SDL_test.h │ ├── skeleton.xsl │ ├── src │ │ ├── libSDLtest │ │ │ ├── Makefile.am │ │ │ ├── SDL_test.c │ │ │ ├── common │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── images.h │ │ │ │ ├── img_blit.c │ │ │ │ ├── img_blitblend.c │ │ │ │ ├── img_face.c │ │ │ │ ├── img_primitives.c │ │ │ │ └── img_primitivesblend.c │ │ │ ├── fuzzer │ │ │ │ ├── fuzzer.c │ │ │ │ ├── fuzzer.h │ │ │ │ ├── utl_crc32.c │ │ │ │ ├── utl_crc32.h │ │ │ │ ├── utl_md5.c │ │ │ │ ├── utl_md5.h │ │ │ │ ├── utl_random.c │ │ │ │ └── utl_random.h │ │ │ ├── logger_helpers.c │ │ │ ├── logger_helpers.h │ │ │ ├── plain_logger.c │ │ │ ├── plain_logger.h │ │ │ ├── xml.c │ │ │ ├── xml.h │ │ │ ├── xml_logger.c │ │ │ └── xml_logger.h │ │ └── runner │ │ │ ├── Makefile.am │ │ │ ├── logger.h │ │ │ ├── runner.c │ │ │ ├── support.c │ │ │ └── support.h │ ├── style.xsl │ └── tests │ │ ├── testaudio │ │ ├── Makefile.am │ │ └── testaudio.c │ │ ├── testclipboard │ │ ├── Makefile.am │ │ └── testclipboard.c │ │ ├── testdummy │ │ ├── Makefile.am │ │ └── testdummy.c │ │ ├── testevents │ │ ├── Makefile.am │ │ └── testevents.c │ │ ├── testkeyboard │ │ ├── Makefile.am │ │ └── testkeyboard.c │ │ ├── testplatform │ │ ├── Makefile.am │ │ └── testplatform.c │ │ ├── testrect │ │ ├── Makefile.am │ │ └── testrect.c │ │ ├── testrender │ │ ├── Makefile.am │ │ └── testrender.c │ │ ├── testrwops │ │ ├── Makefile.am │ │ ├── TestSupportRWops.h │ │ ├── read │ │ └── testrwops.c │ │ ├── testsurface │ │ ├── Makefile.am │ │ └── testsurface.c │ │ ├── testsyswm │ │ ├── Makefile.am │ │ └── testsyswm.c │ │ └── testvideo │ │ ├── Makefile.am │ │ └── testvideo.c │ ├── testatomic.c │ ├── testaudioinfo.c │ ├── testautomation.c │ ├── testautomation_audio.c │ ├── testautomation_clipboard.c │ ├── testautomation_events.c │ ├── testautomation_keyboard.c │ ├── testautomation_mouse.c │ ├── testautomation_platform.c │ ├── testautomation_rect.c │ ├── testautomation_render.c │ ├── testautomation_rwops.c │ ├── testautomation_suites.h │ ├── testautomation_surface.c │ ├── testautomation_syswm.c │ ├── testautomation_timer.c │ ├── testautomation_video.c │ ├── testdraw2.c │ ├── testerror.c │ ├── testfile.c │ ├── testgamecontroller.c │ ├── testgesture.c │ ├── testgl2.c │ ├── testgles.c │ ├── testhaptic.c │ ├── testiconv.c │ ├── testime.c │ ├── testintersections.c │ ├── testjoystick.c │ ├── testkeys.c │ ├── testloadso.c │ ├── testlock.c │ ├── testmessage.c │ ├── testmultiaudio.c │ ├── testnative.c │ ├── testnative.h │ ├── testnativecocoa.m │ ├── testnativew32.c │ ├── testnativex11.c │ ├── testoverlay2.c │ ├── testplatform.c │ ├── testpower.c │ ├── testrelative.c │ ├── testrendercopyex.c │ ├── testrendertarget.c │ ├── testresample.c │ ├── testrumble.c │ ├── testscale.c │ ├── testsem.c │ ├── testshader.c │ ├── testshape.c │ ├── testsprite2.c │ ├── testspriteminimal.c │ ├── teststreaming.c │ ├── testthread.c │ ├── testtimer.c │ ├── testver.c │ ├── testwm2.c │ ├── torturethread.c │ └── utf8.txt ├── libssh2 ├── AUTHORS ├── COPYING ├── ChangeLog ├── HACKING ├── INSTALL ├── Makefile ├── Makefile.am ├── Makefile.in ├── Makefile.inc ├── NEWS ├── NMakefile ├── README ├── RELEASE-NOTES ├── TODO ├── acinclude.m4 ├── aclocal.m4 ├── buildconf ├── config.guess ├── config.log ├── config.rpath ├── config.status ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── docs │ ├── BINDINGS │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── libssh2_agent_connect.3 │ ├── libssh2_agent_disconnect.3 │ ├── libssh2_agent_free.3 │ ├── libssh2_agent_get_identity.3 │ ├── libssh2_agent_init.3 │ ├── libssh2_agent_list_identities.3 │ ├── libssh2_agent_userauth.3 │ ├── libssh2_banner_set.3 │ ├── libssh2_base64_decode.3 │ ├── libssh2_channel_close.3 │ ├── libssh2_channel_direct_tcpip.3 │ ├── libssh2_channel_direct_tcpip_ex.3 │ ├── libssh2_channel_eof.3 │ ├── libssh2_channel_exec.3 │ ├── libssh2_channel_flush.3 │ ├── libssh2_channel_flush_ex.3 │ ├── libssh2_channel_flush_stderr.3 │ ├── libssh2_channel_forward_accept.3 │ ├── libssh2_channel_forward_cancel.3 │ ├── libssh2_channel_forward_listen.3 │ ├── libssh2_channel_forward_listen_ex.3 │ ├── libssh2_channel_free.3 │ ├── libssh2_channel_get_exit_signal.3 │ ├── libssh2_channel_get_exit_status.3 │ ├── libssh2_channel_handle_extended_data.3 │ ├── libssh2_channel_handle_extended_data2.3 │ ├── libssh2_channel_ignore_extended_data.3 │ ├── libssh2_channel_open_ex.3 │ ├── libssh2_channel_open_session.3 │ ├── libssh2_channel_process_startup.3 │ ├── libssh2_channel_read.3 │ ├── libssh2_channel_read_ex.3 │ ├── libssh2_channel_read_stderr.3 │ ├── libssh2_channel_receive_window_adjust.3 │ ├── libssh2_channel_receive_window_adjust2.3 │ ├── libssh2_channel_request_pty.3 │ ├── libssh2_channel_request_pty_ex.3 │ ├── libssh2_channel_request_pty_size.3 │ ├── libssh2_channel_request_pty_size_ex.3 │ ├── libssh2_channel_send_eof.3 │ ├── libssh2_channel_set_blocking.3 │ ├── libssh2_channel_setenv.3 │ ├── libssh2_channel_setenv_ex.3 │ ├── libssh2_channel_shell.3 │ ├── libssh2_channel_subsystem.3 │ ├── libssh2_channel_wait_closed.3 │ ├── libssh2_channel_wait_eof.3 │ ├── libssh2_channel_window_read.3 │ ├── libssh2_channel_window_read_ex.3 │ ├── libssh2_channel_window_write.3 │ ├── libssh2_channel_window_write_ex.3 │ ├── libssh2_channel_write.3 │ ├── libssh2_channel_write_ex.3 │ ├── libssh2_channel_write_stderr.3 │ ├── libssh2_channel_x11_req.3 │ ├── libssh2_channel_x11_req_ex.3 │ ├── libssh2_exit.3 │ ├── libssh2_free.3 │ ├── libssh2_hostkey_hash.3 │ ├── libssh2_init.3 │ ├── libssh2_keepalive_config.3 │ ├── libssh2_keepalive_send.3 │ ├── libssh2_knownhost_add.3 │ ├── libssh2_knownhost_addc.3 │ ├── libssh2_knownhost_check.3 │ ├── libssh2_knownhost_checkp.3 │ ├── libssh2_knownhost_del.3 │ ├── libssh2_knownhost_free.3 │ ├── libssh2_knownhost_get.3 │ ├── libssh2_knownhost_init.3 │ ├── libssh2_knownhost_readfile.3 │ ├── libssh2_knownhost_readline.3 │ ├── libssh2_knownhost_writefile.3 │ ├── libssh2_knownhost_writeline.3 │ ├── libssh2_poll.3 │ ├── libssh2_poll_channel_read.3 │ ├── libssh2_publickey_add.3 │ ├── libssh2_publickey_add_ex.3 │ ├── libssh2_publickey_init.3 │ ├── libssh2_publickey_list_fetch.3 │ ├── libssh2_publickey_list_free.3 │ ├── libssh2_publickey_remove.3 │ ├── libssh2_publickey_remove_ex.3 │ ├── libssh2_publickey_shutdown.3 │ ├── libssh2_scp_recv.3 │ ├── libssh2_scp_send.3 │ ├── libssh2_scp_send64.3 │ ├── libssh2_scp_send_ex.3 │ ├── libssh2_session_abstract.3 │ ├── libssh2_session_banner_get.3 │ ├── libssh2_session_banner_set.3 │ ├── libssh2_session_block_directions.3 │ ├── libssh2_session_callback_set.3 │ ├── libssh2_session_disconnect.3 │ ├── libssh2_session_disconnect_ex.3 │ ├── libssh2_session_flag.3 │ ├── libssh2_session_free.3 │ ├── libssh2_session_get_blocking.3 │ ├── libssh2_session_get_timeout.3 │ ├── libssh2_session_hostkey.3 │ ├── libssh2_session_init.3 │ ├── libssh2_session_init_ex.3 │ ├── libssh2_session_last_errno.3 │ ├── libssh2_session_last_error.3 │ ├── libssh2_session_method_pref.3 │ ├── libssh2_session_methods.3 │ ├── libssh2_session_set_blocking.3 │ ├── libssh2_session_set_timeout.3 │ ├── libssh2_session_startup.3 │ ├── libssh2_session_supported_algs.3 │ ├── libssh2_sftp_close.3 │ ├── libssh2_sftp_close_handle.3 │ ├── libssh2_sftp_closedir.3 │ ├── libssh2_sftp_fsetstat.3 │ ├── libssh2_sftp_fstat.3 │ ├── libssh2_sftp_fstat_ex.3 │ ├── libssh2_sftp_fstatvfs.3 │ ├── libssh2_sftp_get_channel.3 │ ├── libssh2_sftp_init.3 │ ├── libssh2_sftp_last_error.3 │ ├── libssh2_sftp_lstat.3 │ ├── libssh2_sftp_mkdir.3 │ ├── libssh2_sftp_mkdir_ex.3 │ ├── libssh2_sftp_open.3 │ ├── libssh2_sftp_open_ex.3 │ ├── libssh2_sftp_opendir.3 │ ├── libssh2_sftp_read.3 │ ├── libssh2_sftp_readdir.3 │ ├── libssh2_sftp_readdir_ex.3 │ ├── libssh2_sftp_readlink.3 │ ├── libssh2_sftp_realpath.3 │ ├── libssh2_sftp_rename.3 │ ├── libssh2_sftp_rename_ex.3 │ ├── libssh2_sftp_rewind.3 │ ├── libssh2_sftp_rmdir.3 │ ├── libssh2_sftp_rmdir_ex.3 │ ├── libssh2_sftp_seek.3 │ ├── libssh2_sftp_seek64.3 │ ├── libssh2_sftp_setstat.3 │ ├── libssh2_sftp_shutdown.3 │ ├── libssh2_sftp_stat.3 │ ├── libssh2_sftp_stat_ex.3 │ ├── libssh2_sftp_statvfs.3 │ ├── libssh2_sftp_symlink.3 │ ├── libssh2_sftp_symlink_ex.3 │ ├── libssh2_sftp_tell.3 │ ├── libssh2_sftp_tell64.3 │ ├── libssh2_sftp_unlink.3 │ ├── libssh2_sftp_unlink_ex.3 │ ├── libssh2_sftp_write.3 │ ├── libssh2_trace.3 │ ├── libssh2_trace_sethandler.3 │ ├── libssh2_userauth_authenticated.3 │ ├── libssh2_userauth_hostbased_fromfile.3 │ ├── libssh2_userauth_hostbased_fromfile_ex.3 │ ├── libssh2_userauth_keyboard_interactive.3 │ ├── libssh2_userauth_keyboard_interactive_ex.3 │ ├── libssh2_userauth_list.3 │ ├── libssh2_userauth_password.3 │ ├── libssh2_userauth_password_ex.3 │ ├── libssh2_userauth_publickey.3 │ ├── libssh2_userauth_publickey_fromfile.3 │ ├── libssh2_userauth_publickey_fromfile_ex.3 │ ├── libssh2_version.3 │ └── template.3 ├── example │ ├── .deps │ │ ├── direct_tcpip.Po │ │ ├── scp.Po │ │ ├── scp_nonblock.Po │ │ ├── scp_write.Po │ │ ├── scp_write_nonblock.Po │ │ ├── sftp.Po │ │ ├── sftp_RW_nonblock.Po │ │ ├── sftp_append.Po │ │ ├── sftp_mkdir.Po │ │ ├── sftp_mkdir_nonblock.Po │ │ ├── sftp_nonblock.Po │ │ ├── sftp_write.Po │ │ ├── sftp_write_nonblock.Po │ │ ├── sftp_write_sliding.Po │ │ ├── sftpdir.Po │ │ ├── sftpdir_nonblock.Po │ │ ├── ssh2.Po │ │ ├── ssh2_agent.Po │ │ ├── ssh2_echo.Po │ │ ├── ssh2_exec.Po │ │ ├── subsystem_netconf.Po │ │ ├── tcpip-forward.Po │ │ └── x11.Po │ ├── .libs │ │ ├── direct_tcpip │ │ ├── scp │ │ ├── scp_nonblock │ │ ├── scp_write │ │ ├── scp_write_nonblock │ │ ├── sftp │ │ ├── sftp_RW_nonblock │ │ ├── sftp_append │ │ ├── sftp_mkdir │ │ ├── sftp_mkdir_nonblock │ │ ├── sftp_nonblock │ │ ├── sftp_write │ │ ├── sftp_write_nonblock │ │ ├── sftp_write_sliding │ │ ├── sftpdir │ │ ├── sftpdir_nonblock │ │ ├── ssh2 │ │ ├── ssh2_agent │ │ ├── ssh2_echo │ │ ├── ssh2_exec │ │ ├── subsystem_netconf │ │ ├── tcpip-forward │ │ └── x11 │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── direct_tcpip │ ├── direct_tcpip.c │ ├── e │ ├── libssh2_config.h │ ├── libssh2_config.h.in │ ├── scp │ ├── scp.c │ ├── scp_nonblock │ ├── scp_nonblock.c │ ├── scp_write │ ├── scp_write.c │ ├── scp_write_nonblock │ ├── scp_write_nonblock.c │ ├── sftp │ ├── sftp.c │ ├── sftp_RW_nonblock │ ├── sftp_RW_nonblock.c │ ├── sftp_append │ ├── sftp_append.c │ ├── sftp_mkdir │ ├── sftp_mkdir.c │ ├── sftp_mkdir_nonblock │ ├── sftp_mkdir_nonblock.c │ ├── sftp_nonblock │ ├── sftp_nonblock.c │ ├── sftp_write │ ├── sftp_write.c │ ├── sftp_write_nonblock │ ├── sftp_write_nonblock.c │ ├── sftp_write_sliding │ ├── sftp_write_sliding.c │ ├── sftpdir │ ├── sftpdir.c │ ├── sftpdir_nonblock │ ├── sftpdir_nonblock.c │ ├── ssh2 │ ├── ssh2.c │ ├── ssh2_agent │ ├── ssh2_agent.c │ ├── ssh2_echo │ ├── ssh2_echo.c │ ├── ssh2_exec │ ├── ssh2_exec.c │ ├── stamp-h2 │ ├── subsystem_netconf │ ├── subsystem_netconf.c │ ├── tcpip-forward │ ├── tcpip-forward.c │ ├── x11 │ └── x11.c ├── get_ver.awk ├── include │ ├── libssh2.h │ ├── libssh2_publickey.h │ └── libssh2_sftp.h ├── install-sh ├── libssh2.pc ├── libssh2.pc.in ├── libtool ├── ltmain.sh ├── m4 │ ├── autobuild.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── maketgz ├── missing ├── nw │ ├── GNUmakefile │ ├── keepscreen.c │ ├── nwlib.c │ └── test │ │ └── GNUmakefile ├── src │ ├── .deps │ │ ├── agent.Plo │ │ ├── channel.Plo │ │ ├── comp.Plo │ │ ├── crypt.Plo │ │ ├── global.Plo │ │ ├── hostkey.Plo │ │ ├── keepalive.Plo │ │ ├── kex.Plo │ │ ├── knownhost.Plo │ │ ├── libgcrypt.Plo │ │ ├── mac.Plo │ │ ├── misc.Plo │ │ ├── openssl.Plo │ │ ├── packet.Plo │ │ ├── pem.Plo │ │ ├── publickey.Plo │ │ ├── scp.Plo │ │ ├── session.Plo │ │ ├── sftp.Plo │ │ ├── transport.Plo │ │ ├── userauth.Plo │ │ └── version.Plo │ ├── .libs │ │ ├── libssh2.a │ │ ├── libssh2.exp │ │ ├── libssh2.la │ │ ├── libssh2.lai │ │ └── libssh2.ver │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── NMakefile │ ├── agent.c │ ├── agent.lo │ ├── channel.c │ ├── channel.h │ ├── channel.lo │ ├── comp.c │ ├── comp.h │ ├── comp.lo │ ├── crypt.c │ ├── crypt.lo │ ├── crypto.h │ ├── global.c │ ├── global.lo │ ├── hostkey.c │ ├── hostkey.lo │ ├── keepalive.c │ ├── keepalive.lo │ ├── kex.c │ ├── kex.lo │ ├── knownhost.c │ ├── knownhost.lo │ ├── libgcrypt.c │ ├── libgcrypt.h │ ├── libgcrypt.lo │ ├── libssh2.la │ ├── libssh2_config.h │ ├── libssh2_config.h.in │ ├── libssh2_priv.h │ ├── mac.c │ ├── mac.h │ ├── mac.lo │ ├── misc.c │ ├── misc.h │ ├── misc.lo │ ├── openssl.c │ ├── openssl.h │ ├── openssl.lo │ ├── packet.c │ ├── packet.h │ ├── packet.lo │ ├── pem.c │ ├── pem.lo │ ├── publickey.c │ ├── publickey.lo │ ├── scp.c │ ├── scp.lo │ ├── session.c │ ├── session.h │ ├── session.lo │ ├── sftp.c │ ├── sftp.h │ ├── sftp.lo │ ├── stamp-h1 │ ├── transport.c │ ├── transport.h │ ├── transport.lo │ ├── userauth.c │ ├── userauth.h │ ├── userauth.lo │ ├── version.c │ └── version.lo ├── tests │ ├── .deps │ │ ├── simple.Po │ │ └── ssh2.Po │ ├── .libs │ │ └── ssh2 │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── etc │ │ ├── host │ │ ├── host.pub │ │ ├── user │ │ └── user.pub │ ├── mansyntax.sh │ ├── simple.c │ ├── ssh2 │ ├── ssh2.c │ └── ssh2.sh ├── vms │ ├── libssh2_config.h │ ├── libssh2_make_example.dcl │ ├── libssh2_make_help.dcl │ ├── libssh2_make_kit.dcl │ ├── libssh2_make_lib.dcl │ ├── man2help.c │ └── readme.vms └── win32 │ ├── GNUmakefile │ ├── Makefile.Watcom │ ├── config.mk │ ├── libssh2.dsp │ ├── libssh2.dsw │ ├── libssh2.rc │ ├── libssh2_config.h │ ├── msvcproj.foot │ ├── msvcproj.head │ ├── rules.mk │ ├── test │ └── GNUmakefile │ └── tests.dsp ├── libssh2_config.h ├── libvterm ├── .bzr │ ├── README │ ├── branch-format │ ├── branch │ │ ├── branch.conf │ │ ├── format │ │ ├── last-revision │ │ └── tags │ ├── checkout │ │ ├── conflicts │ │ ├── dirstate │ │ └── format │ └── repository │ │ ├── format │ │ ├── indices │ │ ├── 90c87b6b5ca49cd6520f3023af4a2dc7.iix │ │ ├── 90c87b6b5ca49cd6520f3023af4a2dc7.rix │ │ ├── 90c87b6b5ca49cd6520f3023af4a2dc7.six │ │ └── 90c87b6b5ca49cd6520f3023af4a2dc7.tix │ │ ├── pack-names │ │ └── packs │ │ └── 90c87b6b5ca49cd6520f3023af4a2dc7.pack ├── .bzrignore ├── LICENSE ├── Makefile ├── bin │ ├── .libs │ │ ├── unterm │ │ └── vterm-dump │ ├── unterm.c │ └── vterm-dump.c ├── doc │ ├── URLs │ └── seqs.txt ├── include │ ├── vterm.h │ └── vterm_input.h ├── src │ ├── encoding.c │ ├── encoding │ │ ├── DECdrawing.inc │ │ ├── DECdrawing.tbl │ │ ├── uk.inc │ │ └── uk.tbl │ ├── input.c │ ├── parser.c │ ├── pen.c │ ├── rect.h │ ├── screen.c │ ├── state.c │ ├── unicode.c │ ├── utf8.h │ ├── vterm.c │ └── vterm_internal.h ├── t │ ├── 02parser.test │ ├── 03encoding_utf8.test │ ├── 10state_putglyph.test │ ├── 11state_movecursor.test │ ├── 12state_scroll.test │ ├── 13state_edit.test │ ├── 14state_encoding.test │ ├── 15state_mode.test │ ├── 16state_resize.test │ ├── 17state_mouse.test │ ├── 18state_termprops.test │ ├── 20state_wrapping.test │ ├── 21state_tabstops.test │ ├── 22state_save.test │ ├── 25state_input.test │ ├── 26state_query.test │ ├── 27state_reset.test │ ├── 30pen.test │ ├── 40screen_ascii.test │ ├── 41screen_unicode.test │ ├── 42screen_damage.test │ ├── 43screen_resize.test │ ├── 44screen_pen.test │ ├── 50screen_mouse.test │ ├── 51screen_termprops.test │ ├── 90vttest_01-movement-1.test │ ├── 90vttest_01-movement-2.test │ ├── 90vttest_01-movement-3.test │ ├── 90vttest_01-movement-4.test │ ├── 90vttest_02-screen-1.test │ ├── 90vttest_02-screen-2.test │ ├── 90vttest_02-screen-3.test │ ├── 90vttest_02-screen-4.test │ ├── harness.c │ └── run-test.pl ├── tbl2inc_c.pl └── vterm.pc.in ├── local.c ├── local.h ├── main.c ├── ngui.c ├── ngui.h ├── ngui_button.c ├── ngui_button.h ├── ngui_flowbox.c ├── ngui_flowbox.h ├── ngui_info_prompt.c ├── ngui_info_prompt.h ├── ngui_scrollbar.c ├── ngui_stringselect.c ├── ngui_stringselect.h ├── ngui_textbox.c ├── ngui_textbox.h ├── ngui_textlabel.c ├── ngui_textlabel.h ├── nsdl.c ├── nsdl.h ├── nunifont.c ├── nunifont.h ├── osx ├── README ├── SDL_config.h ├── hterm.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── hterm │ │ ├── PkgInfo │ │ └── Resources │ │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ └── icon.icns ├── osx_pasteboard.h └── osx_pasteboard.m ├── regis.c ├── regis.h ├── ssh.c ├── ssh.h ├── test ├── Makefile ├── main.c ├── utf.c └── utf.h ├── unifont_conv.c ├── utf8proc ├── Changelog ├── LICENSE ├── Makefile ├── README ├── data_generator.rb ├── lump.txt ├── pgsql │ ├── Makefile │ ├── utf8proc.sql │ └── utf8proc_pgsql.c ├── ruby │ ├── extconf.rb │ ├── gem │ │ ├── LICENSE │ │ └── utf8proc.gemspec │ ├── utf8proc.rb │ └── utf8proc_native.c ├── utf8proc.c ├── utf8proc.h └── utf8proc_data.c ├── uthash.h ├── virtual_buttons.c ├── virtual_buttons.h └── widthmap_static.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/RELEASENOTES -------------------------------------------------------------------------------- /base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/base64.c -------------------------------------------------------------------------------- /base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/base64.h -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /fontmap_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/fontmap_static.h -------------------------------------------------------------------------------- /inlinedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/inlinedata.c -------------------------------------------------------------------------------- /inlinedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/inlinedata.h -------------------------------------------------------------------------------- /inlinetest.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/inlinetest.dat -------------------------------------------------------------------------------- /iosicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iosicon.svg -------------------------------------------------------------------------------- /iphone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/Default-568h@2x.png -------------------------------------------------------------------------------- /iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/Default.png -------------------------------------------------------------------------------- /iphone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/Info.plist -------------------------------------------------------------------------------- /iphone/RecentItemsDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/RecentItemsDataSource.h -------------------------------------------------------------------------------- /iphone/RecentItemsDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/RecentItemsDataSource.m -------------------------------------------------------------------------------- /iphone/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/SDL_config.h -------------------------------------------------------------------------------- /iphone/ServerSelect.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/ServerSelect.xib -------------------------------------------------------------------------------- /iphone/ServerSelectUIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/ServerSelectUIView.h -------------------------------------------------------------------------------- /iphone/ServerSelectUIView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/ServerSelectUIView.m -------------------------------------------------------------------------------- /iphone/build-libssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/build-libssl.sh -------------------------------------------------------------------------------- /iphone/ios114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/ios114.png -------------------------------------------------------------------------------- /iphone/ios144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/ios144.png -------------------------------------------------------------------------------- /iphone/ios57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/ios57.png -------------------------------------------------------------------------------- /iphone/ios72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/ios72.png -------------------------------------------------------------------------------- /iphone/iphone_pasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/iphone_pasteboard.h -------------------------------------------------------------------------------- /iphone/iphone_pasteboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/iphone_pasteboard.m -------------------------------------------------------------------------------- /iphone/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/lib/libcrypto.a -------------------------------------------------------------------------------- /iphone/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/lib/libssl.a -------------------------------------------------------------------------------- /iphone/openssl_inc/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/openssl_inc/openssl/bn.h -------------------------------------------------------------------------------- /iphone/openssl_inc/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/openssl_inc/openssl/dh.h -------------------------------------------------------------------------------- /iphone/openssl_inc/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/openssl_inc/openssl/ec.h -------------------------------------------------------------------------------- /iphone/openssl_inc/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/openssl_inc/openssl/ts.h -------------------------------------------------------------------------------- /iphone/openssl_inc/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/openssl_inc/openssl/ui.h -------------------------------------------------------------------------------- /iphone/recentrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/recentrw.h -------------------------------------------------------------------------------- /iphone/recentrw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/recentrw.m -------------------------------------------------------------------------------- /iphone/sslaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/sslaunch.h -------------------------------------------------------------------------------- /iphone/sslaunch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/iphone/sslaunch.m -------------------------------------------------------------------------------- /libpng/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/.DS_Store -------------------------------------------------------------------------------- /libpng/.libs/libpng15.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/.libs/libpng15.a -------------------------------------------------------------------------------- /libpng/.libs/libpng15.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/.libs/libpng15.la -------------------------------------------------------------------------------- /libpng/.libs/libpng15.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/.libs/libpng15.lai -------------------------------------------------------------------------------- /libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/ANNOUNCE -------------------------------------------------------------------------------- /libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/CHANGES -------------------------------------------------------------------------------- /libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/INSTALL -------------------------------------------------------------------------------- /libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/LICENSE -------------------------------------------------------------------------------- /libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/Makefile -------------------------------------------------------------------------------- /libpng/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/Makefile.am -------------------------------------------------------------------------------- /libpng/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/Makefile.in -------------------------------------------------------------------------------- /libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/README -------------------------------------------------------------------------------- /libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/TODO -------------------------------------------------------------------------------- /libpng/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/aclocal.m4 -------------------------------------------------------------------------------- /libpng/arm/filter_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/arm/filter_neon.S -------------------------------------------------------------------------------- /libpng/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/autogen.sh -------------------------------------------------------------------------------- /libpng/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/config.guess -------------------------------------------------------------------------------- /libpng/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/config.h -------------------------------------------------------------------------------- /libpng/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/config.h.in -------------------------------------------------------------------------------- /libpng/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/config.log -------------------------------------------------------------------------------- /libpng/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/config.status -------------------------------------------------------------------------------- /libpng/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/config.sub -------------------------------------------------------------------------------- /libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/configure -------------------------------------------------------------------------------- /libpng/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/configure.ac -------------------------------------------------------------------------------- /libpng/contrib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/README.txt -------------------------------------------------------------------------------- /libpng/contrib/gregbook/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/gregbook/COPYING -------------------------------------------------------------------------------- /libpng/contrib/gregbook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/gregbook/LICENSE -------------------------------------------------------------------------------- /libpng/contrib/gregbook/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/gregbook/README -------------------------------------------------------------------------------- /libpng/contrib/gregbook/wpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/gregbook/wpng.c -------------------------------------------------------------------------------- /libpng/contrib/pngminim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/pngminim/README -------------------------------------------------------------------------------- /libpng/contrib/pngminus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/pngminus/README -------------------------------------------------------------------------------- /libpng/contrib/pngsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/contrib/pngsuite/README -------------------------------------------------------------------------------- /libpng/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/depcomp -------------------------------------------------------------------------------- /libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/example.c -------------------------------------------------------------------------------- /libpng/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/install-sh -------------------------------------------------------------------------------- /libpng/libpng-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng-config -------------------------------------------------------------------------------- /libpng/libpng-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng-config.in -------------------------------------------------------------------------------- /libpng/libpng-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng-manual.txt -------------------------------------------------------------------------------- /libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng.3 -------------------------------------------------------------------------------- /libpng/libpng.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng.la -------------------------------------------------------------------------------- /libpng/libpng.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng.pc -------------------------------------------------------------------------------- /libpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng.pc.in -------------------------------------------------------------------------------- /libpng/libpng.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng.sym -------------------------------------------------------------------------------- /libpng/libpng15-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15-config -------------------------------------------------------------------------------- /libpng/libpng15.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15.la -------------------------------------------------------------------------------- /libpng/libpng15.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15.pc -------------------------------------------------------------------------------- /libpng/libpng15_la-png.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-png.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngerror.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngerror.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngget.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngget.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngmem.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngmem.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngpread.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngpread.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngread.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngread.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngrio.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngrio.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngrtran.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngrtran.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngrutil.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngrutil.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngset.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngset.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngset.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngset.o -------------------------------------------------------------------------------- /libpng/libpng15_la-pngtrans.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngtrans.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngwio.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngwio.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngwrite.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngwrite.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngwtran.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngwtran.lo -------------------------------------------------------------------------------- /libpng/libpng15_la-pngwutil.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpng15_la-pngwutil.lo -------------------------------------------------------------------------------- /libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libpngpf.3 -------------------------------------------------------------------------------- /libpng/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/libtool -------------------------------------------------------------------------------- /libpng/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/ltmain.sh -------------------------------------------------------------------------------- /libpng/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/missing -------------------------------------------------------------------------------- /libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/png.5 -------------------------------------------------------------------------------- /libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/png.c -------------------------------------------------------------------------------- /libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/png.h -------------------------------------------------------------------------------- /libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngbar.jpg -------------------------------------------------------------------------------- /libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngbar.png -------------------------------------------------------------------------------- /libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngconf.h -------------------------------------------------------------------------------- /libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngdebug.h -------------------------------------------------------------------------------- /libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngerror.c -------------------------------------------------------------------------------- /libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngget.c -------------------------------------------------------------------------------- /libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pnginfo.h -------------------------------------------------------------------------------- /libpng/pnglibconf.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pnglibconf.dfn -------------------------------------------------------------------------------- /libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pnglibconf.h -------------------------------------------------------------------------------- /libpng/pnglibconf.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pnglibconf.out -------------------------------------------------------------------------------- /libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngmem.c -------------------------------------------------------------------------------- /libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngnow.png -------------------------------------------------------------------------------- /libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngpread.c -------------------------------------------------------------------------------- /libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngpriv.h -------------------------------------------------------------------------------- /libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngread.c -------------------------------------------------------------------------------- /libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngrio.c -------------------------------------------------------------------------------- /libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngrtran.c -------------------------------------------------------------------------------- /libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngrutil.c -------------------------------------------------------------------------------- /libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngset.c -------------------------------------------------------------------------------- /libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngstruct.h -------------------------------------------------------------------------------- /libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngtest.c -------------------------------------------------------------------------------- /libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngtest.png -------------------------------------------------------------------------------- /libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngtrans.c -------------------------------------------------------------------------------- /libpng/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngusr.dfa -------------------------------------------------------------------------------- /libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngwio.c -------------------------------------------------------------------------------- /libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngwrite.c -------------------------------------------------------------------------------- /libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngwtran.c -------------------------------------------------------------------------------- /libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/pngwutil.c -------------------------------------------------------------------------------- /libpng/scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/README.txt -------------------------------------------------------------------------------- /libpng/scripts/SCOPTIONS.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/SCOPTIONS.ppc -------------------------------------------------------------------------------- /libpng/scripts/checksym.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/checksym.awk -------------------------------------------------------------------------------- /libpng/scripts/chkfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/chkfmt -------------------------------------------------------------------------------- /libpng/scripts/def.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/def.dfn -------------------------------------------------------------------------------- /libpng/scripts/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/descrip.mms -------------------------------------------------------------------------------- /libpng/scripts/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/libpng.pc.in -------------------------------------------------------------------------------- /libpng/scripts/makefile.32sunu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.32sunu -------------------------------------------------------------------------------- /libpng/scripts/makefile.64sunu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.64sunu -------------------------------------------------------------------------------- /libpng/scripts/makefile.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.acorn -------------------------------------------------------------------------------- /libpng/scripts/makefile.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.aix -------------------------------------------------------------------------------- /libpng/scripts/makefile.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.amiga -------------------------------------------------------------------------------- /libpng/scripts/makefile.atari: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.atari -------------------------------------------------------------------------------- /libpng/scripts/makefile.bc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.bc32 -------------------------------------------------------------------------------- /libpng/scripts/makefile.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.beos -------------------------------------------------------------------------------- /libpng/scripts/makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.bor -------------------------------------------------------------------------------- /libpng/scripts/makefile.cegcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.cegcc -------------------------------------------------------------------------------- /libpng/scripts/makefile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.darwin -------------------------------------------------------------------------------- /libpng/scripts/makefile.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.dec -------------------------------------------------------------------------------- /libpng/scripts/makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.dj2 -------------------------------------------------------------------------------- /libpng/scripts/makefile.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.elf -------------------------------------------------------------------------------- /libpng/scripts/makefile.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.freebsd -------------------------------------------------------------------------------- /libpng/scripts/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.gcc -------------------------------------------------------------------------------- /libpng/scripts/makefile.hp64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.hp64 -------------------------------------------------------------------------------- /libpng/scripts/makefile.hpgcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.hpgcc -------------------------------------------------------------------------------- /libpng/scripts/makefile.hpux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.hpux -------------------------------------------------------------------------------- /libpng/scripts/makefile.ibmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.ibmc -------------------------------------------------------------------------------- /libpng/scripts/makefile.intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.intel -------------------------------------------------------------------------------- /libpng/scripts/makefile.knr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.knr -------------------------------------------------------------------------------- /libpng/scripts/makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.linux -------------------------------------------------------------------------------- /libpng/scripts/makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.mips -------------------------------------------------------------------------------- /libpng/scripts/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.msc -------------------------------------------------------------------------------- /libpng/scripts/makefile.ne12bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.ne12bsd -------------------------------------------------------------------------------- /libpng/scripts/makefile.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.netbsd -------------------------------------------------------------------------------- /libpng/scripts/makefile.openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.openbsd -------------------------------------------------------------------------------- /libpng/scripts/makefile.sco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.sco -------------------------------------------------------------------------------- /libpng/scripts/makefile.sggcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.sggcc -------------------------------------------------------------------------------- /libpng/scripts/makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.sgi -------------------------------------------------------------------------------- /libpng/scripts/makefile.std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.std -------------------------------------------------------------------------------- /libpng/scripts/makefile.sunos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.sunos -------------------------------------------------------------------------------- /libpng/scripts/makefile.tc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.tc3 -------------------------------------------------------------------------------- /libpng/scripts/makefile.vcwin32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makefile.vcwin32 -------------------------------------------------------------------------------- /libpng/scripts/makevms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/makevms.com -------------------------------------------------------------------------------- /libpng/scripts/options.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/options.awk -------------------------------------------------------------------------------- /libpng/scripts/pnglibconf.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/pnglibconf.dfa -------------------------------------------------------------------------------- /libpng/scripts/pnglibconf.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/pnglibconf.mak -------------------------------------------------------------------------------- /libpng/scripts/pngwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/pngwin.rc -------------------------------------------------------------------------------- /libpng/scripts/smakefile.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/smakefile.ppc -------------------------------------------------------------------------------- /libpng/scripts/sym.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/sym.dfn -------------------------------------------------------------------------------- /libpng/scripts/sym.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/sym.out -------------------------------------------------------------------------------- /libpng/scripts/symbols.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/symbols.def -------------------------------------------------------------------------------- /libpng/scripts/symbols.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/symbols.dfn -------------------------------------------------------------------------------- /libpng/scripts/vers.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/scripts/vers.dfn -------------------------------------------------------------------------------- /libpng/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /libpng/test-pngtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/test-pngtest.sh -------------------------------------------------------------------------------- /libpng/test-pngvalid-full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/test-pngvalid-full.sh -------------------------------------------------------------------------------- /libpng/test-pngvalid-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libpng/test-pngvalid-simple.sh -------------------------------------------------------------------------------- /libsdl/.DISABLED-hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/.DISABLED-hgeol -------------------------------------------------------------------------------- /libsdl/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/.hgignore -------------------------------------------------------------------------------- /libsdl/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/.hgtags -------------------------------------------------------------------------------- /libsdl/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/.indent.pro -------------------------------------------------------------------------------- /libsdl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Android.mk -------------------------------------------------------------------------------- /libsdl/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/BUGS -------------------------------------------------------------------------------- /libsdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/CMakeLists.txt -------------------------------------------------------------------------------- /libsdl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/COPYING -------------------------------------------------------------------------------- /libsdl/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/CREDITS -------------------------------------------------------------------------------- /libsdl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/INSTALL -------------------------------------------------------------------------------- /libsdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Makefile -------------------------------------------------------------------------------- /libsdl/Makefile.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Makefile.ds -------------------------------------------------------------------------------- /libsdl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Makefile.in -------------------------------------------------------------------------------- /libsdl/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Makefile.minimal -------------------------------------------------------------------------------- /libsdl/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Makefile.pandora -------------------------------------------------------------------------------- /libsdl/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Makefile.rules -------------------------------------------------------------------------------- /libsdl/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Makefile.wiz -------------------------------------------------------------------------------- /libsdl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README -------------------------------------------------------------------------------- /libsdl/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README-SDL.txt -------------------------------------------------------------------------------- /libsdl/README.DirectFB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.DirectFB -------------------------------------------------------------------------------- /libsdl/README.HG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.HG -------------------------------------------------------------------------------- /libsdl/README.MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.MacOSX -------------------------------------------------------------------------------- /libsdl/README.Platforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.Platforms -------------------------------------------------------------------------------- /libsdl/README.Porting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.Porting -------------------------------------------------------------------------------- /libsdl/README.WinCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.WinCE -------------------------------------------------------------------------------- /libsdl/README.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.android -------------------------------------------------------------------------------- /libsdl/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.cmake -------------------------------------------------------------------------------- /libsdl/README.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.ds -------------------------------------------------------------------------------- /libsdl/README.gesture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.gesture -------------------------------------------------------------------------------- /libsdl/README.iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.iOS -------------------------------------------------------------------------------- /libsdl/README.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.pandora -------------------------------------------------------------------------------- /libsdl/README.touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/README.touch -------------------------------------------------------------------------------- /libsdl/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/SDL2.spec -------------------------------------------------------------------------------- /libsdl/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/SDL2.spec.in -------------------------------------------------------------------------------- /libsdl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/TODO -------------------------------------------------------------------------------- /libsdl/UNDER_CONSTRUCTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/UNDER_CONSTRUCTION.txt -------------------------------------------------------------------------------- /libsdl/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/VisualC.html -------------------------------------------------------------------------------- /libsdl/VisualC/SDL_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/VisualC/SDL_VS2008.sln -------------------------------------------------------------------------------- /libsdl/VisualC/SDL_VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/VisualC/SDL_VS2010.sln -------------------------------------------------------------------------------- /libsdl/VisualC/SDL_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/VisualC/SDL_VS2012.sln -------------------------------------------------------------------------------- /libsdl/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/VisualC/clean.sh -------------------------------------------------------------------------------- /libsdl/WhatsNew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/WhatsNew -------------------------------------------------------------------------------- /libsdl/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /libsdl/Xcode-iOS/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Xcode-iOS/Test/README -------------------------------------------------------------------------------- /libsdl/Xcode/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Xcode/package -------------------------------------------------------------------------------- /libsdl/Xcode/stationary.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Xcode/stationary.csh -------------------------------------------------------------------------------- /libsdl/Xcode/uninstall.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/Xcode/uninstall.csh -------------------------------------------------------------------------------- /libsdl/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/acinclude/alsa.m4 -------------------------------------------------------------------------------- /libsdl/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/acinclude/esd.m4 -------------------------------------------------------------------------------- /libsdl/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/acinclude/libtool.m4 -------------------------------------------------------------------------------- /libsdl/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /libsdl/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /libsdl/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /libsdl/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /libsdl/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/aclocal.m4 -------------------------------------------------------------------------------- /libsdl/android-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /libsdl/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/autogen.sh -------------------------------------------------------------------------------- /libsdl/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build-scripts/config.sub -------------------------------------------------------------------------------- /libsdl/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build-scripts/install-sh -------------------------------------------------------------------------------- /libsdl/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /libsdl/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build-scripts/showrev.sh -------------------------------------------------------------------------------- /libsdl/build/.libs/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/.libs/libSDL2.a -------------------------------------------------------------------------------- /libsdl/build/.libs/libSDL2.la: -------------------------------------------------------------------------------- 1 | ../libSDL2.la -------------------------------------------------------------------------------- /libsdl/build/.libs/libSDL2.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/.libs/libSDL2.lai -------------------------------------------------------------------------------- /libsdl/build/SDL.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL.d -------------------------------------------------------------------------------- /libsdl/build/SDL.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_RLEaccel.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_RLEaccel.d -------------------------------------------------------------------------------- /libsdl/build/SDL_RLEaccel.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_RLEaccel.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_assert.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_assert.d -------------------------------------------------------------------------------- /libsdl/build/SDL_assert.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_assert.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_atomic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_atomic.d -------------------------------------------------------------------------------- /libsdl/build/SDL_atomic.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_atomic.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_audio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_audio.d -------------------------------------------------------------------------------- /libsdl/build/SDL_audio.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_audio.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_audiocvt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_audiocvt.d -------------------------------------------------------------------------------- /libsdl/build/SDL_audiocvt.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_audiocvt.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_audiodev.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_audiodev.d -------------------------------------------------------------------------------- /libsdl/build/SDL_audiodev.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_audiodev.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_audiotypecvt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_audiotypecvt.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blendline.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blendline.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blendline.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blendline.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blendpoint.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blendpoint.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blendpoint.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blendpoint.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_0.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_0.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_0.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_0.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_1.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_1.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_1.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_A.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_A.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_A.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_A.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_N.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_N.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_N.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_N.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_auto.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_auto.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_auto.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_auto.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_copy.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_copy.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_copy.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_copy.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_slow.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_slow.d -------------------------------------------------------------------------------- /libsdl/build/SDL_blit_slow.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_blit_slow.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_bmp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_bmp.d -------------------------------------------------------------------------------- /libsdl/build/SDL_bmp.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_bmp.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_clipboard.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_clipboard.d -------------------------------------------------------------------------------- /libsdl/build/SDL_clipboard.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_clipboard.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_cpuinfo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_cpuinfo.d -------------------------------------------------------------------------------- /libsdl/build/SDL_cpuinfo.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_cpuinfo.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_diskaudio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_diskaudio.d -------------------------------------------------------------------------------- /libsdl/build/SDL_diskaudio.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_diskaudio.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_drawline.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_drawline.d -------------------------------------------------------------------------------- /libsdl/build/SDL_drawline.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_drawline.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_drawpoint.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_drawpoint.d -------------------------------------------------------------------------------- /libsdl/build/SDL_drawpoint.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_drawpoint.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_dropevents.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_dropevents.d -------------------------------------------------------------------------------- /libsdl/build/SDL_dropevents.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_dropevents.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_dummy_main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_dummy_main.d -------------------------------------------------------------------------------- /libsdl/build/SDL_dummy_main.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_dummy_main.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_dummyaudio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_dummyaudio.d -------------------------------------------------------------------------------- /libsdl/build/SDL_dummyaudio.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_dummyaudio.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_error.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_error.d -------------------------------------------------------------------------------- /libsdl/build/SDL_error.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_error.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_events.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_events.d -------------------------------------------------------------------------------- /libsdl/build/SDL_events.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_events.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_fatal.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_fatal.d -------------------------------------------------------------------------------- /libsdl/build/SDL_fatal.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_fatal.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_fillrect.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_fillrect.d -------------------------------------------------------------------------------- /libsdl/build/SDL_fillrect.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_fillrect.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_gesture.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_gesture.d -------------------------------------------------------------------------------- /libsdl/build/SDL_gesture.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_gesture.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_getenv.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_getenv.d -------------------------------------------------------------------------------- /libsdl/build/SDL_getenv.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_getenv.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_haptic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_haptic.d -------------------------------------------------------------------------------- /libsdl/build/SDL_haptic.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_haptic.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_hints.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_hints.d -------------------------------------------------------------------------------- /libsdl/build/SDL_hints.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_hints.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_iconv.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_iconv.d -------------------------------------------------------------------------------- /libsdl/build/SDL_iconv.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_iconv.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_joystick.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_joystick.d -------------------------------------------------------------------------------- /libsdl/build/SDL_joystick.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_joystick.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_keyboard.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_keyboard.d -------------------------------------------------------------------------------- /libsdl/build/SDL_keyboard.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_keyboard.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_libgl2D.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_libgl2D.d -------------------------------------------------------------------------------- /libsdl/build/SDL_libgl2D.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_libgl2D.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_log.d -------------------------------------------------------------------------------- /libsdl/build/SDL_log.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_log.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_malloc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_malloc.d -------------------------------------------------------------------------------- /libsdl/build/SDL_malloc.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_malloc.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_mixer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_mixer.d -------------------------------------------------------------------------------- /libsdl/build/SDL_mixer.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_mixer.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_mouse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_mouse.d -------------------------------------------------------------------------------- /libsdl/build/SDL_mouse.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_mouse.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_ndsrender.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_ndsrender.d -------------------------------------------------------------------------------- /libsdl/build/SDL_ndsrender.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_ndsrender.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_nullevents.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_nullevents.d -------------------------------------------------------------------------------- /libsdl/build/SDL_nullevents.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_nullevents.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_nullvideo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_nullvideo.d -------------------------------------------------------------------------------- /libsdl/build/SDL_nullvideo.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_nullvideo.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_pixels.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_pixels.d -------------------------------------------------------------------------------- /libsdl/build/SDL_pixels.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_pixels.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_power.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_power.d -------------------------------------------------------------------------------- /libsdl/build/SDL_power.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_power.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_qsort.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_qsort.d -------------------------------------------------------------------------------- /libsdl/build/SDL_qsort.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_qsort.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_quit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_quit.d -------------------------------------------------------------------------------- /libsdl/build/SDL_quit.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_quit.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_rect.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_rect.d -------------------------------------------------------------------------------- /libsdl/build/SDL_rect.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_rect.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_render.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render.d -------------------------------------------------------------------------------- /libsdl/build/SDL_render.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_render_d3d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_d3d.d -------------------------------------------------------------------------------- /libsdl/build/SDL_render_d3d.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_d3d.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_render_gl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_gl.d -------------------------------------------------------------------------------- /libsdl/build/SDL_render_gl.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_gl.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_render_gles.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_gles.d -------------------------------------------------------------------------------- /libsdl/build/SDL_render_gles.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_gles.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_render_gles2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_gles2.d -------------------------------------------------------------------------------- /libsdl/build/SDL_render_sw.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_sw.d -------------------------------------------------------------------------------- /libsdl/build/SDL_render_sw.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_render_sw.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_rotate.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_rotate.d -------------------------------------------------------------------------------- /libsdl/build/SDL_rotate.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_rotate.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_rwops.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_rwops.d -------------------------------------------------------------------------------- /libsdl/build/SDL_rwops.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_rwops.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_shaders_gl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_shaders_gl.d -------------------------------------------------------------------------------- /libsdl/build/SDL_shaders_gl.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_shaders_gl.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_shape.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_shape.d -------------------------------------------------------------------------------- /libsdl/build/SDL_shape.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_shape.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_spinlock.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_spinlock.d -------------------------------------------------------------------------------- /libsdl/build/SDL_spinlock.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_spinlock.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_stdlib.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_stdlib.d -------------------------------------------------------------------------------- /libsdl/build/SDL_stdlib.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_stdlib.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_stretch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_stretch.d -------------------------------------------------------------------------------- /libsdl/build/SDL_stretch.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_stretch.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_string.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_string.d -------------------------------------------------------------------------------- /libsdl/build/SDL_string.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_string.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_surface.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_surface.d -------------------------------------------------------------------------------- /libsdl/build/SDL_surface.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_surface.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_syscond.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syscond.d -------------------------------------------------------------------------------- /libsdl/build/SDL_syscond.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syscond.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_syshaptic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syshaptic.d -------------------------------------------------------------------------------- /libsdl/build/SDL_syshaptic.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syshaptic.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_sysjoystick.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_sysjoystick.d -------------------------------------------------------------------------------- /libsdl/build/SDL_sysjoystick.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_sysjoystick.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_sysloadso.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_sysloadso.d -------------------------------------------------------------------------------- /libsdl/build/SDL_sysmutex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_sysmutex.d -------------------------------------------------------------------------------- /libsdl/build/SDL_sysmutex.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_sysmutex.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_syspower.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syspower.d -------------------------------------------------------------------------------- /libsdl/build/SDL_syspower.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syspower.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_syssem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syssem.d -------------------------------------------------------------------------------- /libsdl/build/SDL_syssem.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_syssem.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_systhread.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_systhread.d -------------------------------------------------------------------------------- /libsdl/build/SDL_systimer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_systimer.d -------------------------------------------------------------------------------- /libsdl/build/SDL_systimer.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_systimer.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_test_font.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_test_font.d -------------------------------------------------------------------------------- /libsdl/build/SDL_test_log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_test_log.d -------------------------------------------------------------------------------- /libsdl/build/SDL_test_log.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_test_log.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_test_md5.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_test_md5.d -------------------------------------------------------------------------------- /libsdl/build/SDL_test_md5.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_test_md5.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_thread.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_thread.d -------------------------------------------------------------------------------- /libsdl/build/SDL_thread.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_thread.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_timer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_timer.d -------------------------------------------------------------------------------- /libsdl/build/SDL_timer.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_timer.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_touch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_touch.d -------------------------------------------------------------------------------- /libsdl/build/SDL_touch.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_touch.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_video.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_video.d -------------------------------------------------------------------------------- /libsdl/build/SDL_video.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_video.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_wave.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_wave.d -------------------------------------------------------------------------------- /libsdl/build/SDL_wave.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_wave.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_x11dyn.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11dyn.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11dyn.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11dyn.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_x11events.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11events.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11modes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11modes.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11modes.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11modes.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_x11mouse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11mouse.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11mouse.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11mouse.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_x11opengl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11opengl.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11shape.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11shape.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11shape.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11shape.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_x11touch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11touch.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11touch.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11touch.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_x11video.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11video.d -------------------------------------------------------------------------------- /libsdl/build/SDL_x11video.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11video.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_x11window.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_x11window.d -------------------------------------------------------------------------------- /libsdl/build/SDL_yuv_mmx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_yuv_mmx.d -------------------------------------------------------------------------------- /libsdl/build/SDL_yuv_mmx.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_yuv_mmx.lo -------------------------------------------------------------------------------- /libsdl/build/SDL_yuv_sw.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_yuv_sw.d -------------------------------------------------------------------------------- /libsdl/build/SDL_yuv_sw.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/SDL_yuv_sw.lo -------------------------------------------------------------------------------- /libsdl/build/e_atan2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_atan2.d -------------------------------------------------------------------------------- /libsdl/build/e_atan2.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_atan2.lo -------------------------------------------------------------------------------- /libsdl/build/e_log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_log.d -------------------------------------------------------------------------------- /libsdl/build/e_log.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_log.lo -------------------------------------------------------------------------------- /libsdl/build/e_pow.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_pow.d -------------------------------------------------------------------------------- /libsdl/build/e_pow.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_pow.lo -------------------------------------------------------------------------------- /libsdl/build/e_rem_pio2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_rem_pio2.d -------------------------------------------------------------------------------- /libsdl/build/e_rem_pio2.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_rem_pio2.lo -------------------------------------------------------------------------------- /libsdl/build/e_sqrt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_sqrt.d -------------------------------------------------------------------------------- /libsdl/build/e_sqrt.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/e_sqrt.lo -------------------------------------------------------------------------------- /libsdl/build/edid-parse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/edid-parse.d -------------------------------------------------------------------------------- /libsdl/build/edid-parse.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/edid-parse.lo -------------------------------------------------------------------------------- /libsdl/build/imKStoUCS.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/imKStoUCS.d -------------------------------------------------------------------------------- /libsdl/build/imKStoUCS.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/imKStoUCS.lo -------------------------------------------------------------------------------- /libsdl/build/k_cos.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/k_cos.d -------------------------------------------------------------------------------- /libsdl/build/k_cos.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/k_cos.lo -------------------------------------------------------------------------------- /libsdl/build/k_rem_pio2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/k_rem_pio2.d -------------------------------------------------------------------------------- /libsdl/build/k_rem_pio2.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/k_rem_pio2.lo -------------------------------------------------------------------------------- /libsdl/build/k_sin.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/k_sin.d -------------------------------------------------------------------------------- /libsdl/build/k_sin.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/k_sin.lo -------------------------------------------------------------------------------- /libsdl/build/libSDL2.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/libSDL2.la -------------------------------------------------------------------------------- /libsdl/build/libSDL2_test.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/libSDL2_test.a -------------------------------------------------------------------------------- /libsdl/build/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/libSDL2main.a -------------------------------------------------------------------------------- /libsdl/build/s_atan.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_atan.d -------------------------------------------------------------------------------- /libsdl/build/s_atan.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_atan.lo -------------------------------------------------------------------------------- /libsdl/build/s_copysign.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_copysign.d -------------------------------------------------------------------------------- /libsdl/build/s_copysign.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_copysign.lo -------------------------------------------------------------------------------- /libsdl/build/s_cos.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_cos.d -------------------------------------------------------------------------------- /libsdl/build/s_cos.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_cos.lo -------------------------------------------------------------------------------- /libsdl/build/s_fabs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_fabs.d -------------------------------------------------------------------------------- /libsdl/build/s_fabs.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_fabs.lo -------------------------------------------------------------------------------- /libsdl/build/s_floor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_floor.d -------------------------------------------------------------------------------- /libsdl/build/s_floor.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_floor.lo -------------------------------------------------------------------------------- /libsdl/build/s_scalbn.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_scalbn.d -------------------------------------------------------------------------------- /libsdl/build/s_scalbn.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_scalbn.lo -------------------------------------------------------------------------------- /libsdl/build/s_sin.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_sin.d -------------------------------------------------------------------------------- /libsdl/build/s_sin.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/build/s_sin.lo -------------------------------------------------------------------------------- /libsdl/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/cmake/macros.cmake -------------------------------------------------------------------------------- /libsdl/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /libsdl/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/config.log -------------------------------------------------------------------------------- /libsdl/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/config.status -------------------------------------------------------------------------------- /libsdl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/configure -------------------------------------------------------------------------------- /libsdl/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/configure.in -------------------------------------------------------------------------------- /libsdl/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/e -------------------------------------------------------------------------------- /libsdl/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL.h -------------------------------------------------------------------------------- /libsdl/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_assert.h -------------------------------------------------------------------------------- /libsdl/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_atomic.h -------------------------------------------------------------------------------- /libsdl/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_audio.h -------------------------------------------------------------------------------- /libsdl/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_copying.h -------------------------------------------------------------------------------- /libsdl/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libsdl/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_endian.h -------------------------------------------------------------------------------- /libsdl/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_error.h -------------------------------------------------------------------------------- /libsdl/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_events.h -------------------------------------------------------------------------------- /libsdl/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_gesture.h -------------------------------------------------------------------------------- /libsdl/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_haptic.h -------------------------------------------------------------------------------- /libsdl/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_hints.h -------------------------------------------------------------------------------- /libsdl/include/SDL_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_input.h -------------------------------------------------------------------------------- /libsdl/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_keycode.h -------------------------------------------------------------------------------- /libsdl/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_loadso.h -------------------------------------------------------------------------------- /libsdl/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_log.h -------------------------------------------------------------------------------- /libsdl/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_main.h -------------------------------------------------------------------------------- /libsdl/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_mouse.h -------------------------------------------------------------------------------- /libsdl/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_mutex.h -------------------------------------------------------------------------------- /libsdl/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_name.h -------------------------------------------------------------------------------- /libsdl/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_opengl.h -------------------------------------------------------------------------------- /libsdl/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_pixels.h -------------------------------------------------------------------------------- /libsdl/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_power.h -------------------------------------------------------------------------------- /libsdl/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_quit.h -------------------------------------------------------------------------------- /libsdl/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_rect.h -------------------------------------------------------------------------------- /libsdl/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_render.h -------------------------------------------------------------------------------- /libsdl/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_rwops.h -------------------------------------------------------------------------------- /libsdl/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_shape.h -------------------------------------------------------------------------------- /libsdl/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_stdinc.h -------------------------------------------------------------------------------- /libsdl/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_surface.h -------------------------------------------------------------------------------- /libsdl/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_system.h -------------------------------------------------------------------------------- /libsdl/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_syswm.h -------------------------------------------------------------------------------- /libsdl/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_test.h -------------------------------------------------------------------------------- /libsdl/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_thread.h -------------------------------------------------------------------------------- /libsdl/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_timer.h -------------------------------------------------------------------------------- /libsdl/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_touch.h -------------------------------------------------------------------------------- /libsdl/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_types.h -------------------------------------------------------------------------------- /libsdl/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_version.h -------------------------------------------------------------------------------- /libsdl/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/SDL_video.h -------------------------------------------------------------------------------- /libsdl/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/begin_code.h -------------------------------------------------------------------------------- /libsdl/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/close_code.h -------------------------------------------------------------------------------- /libsdl/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/include/doxyfile -------------------------------------------------------------------------------- /libsdl/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/libtool -------------------------------------------------------------------------------- /libsdl/sdl2-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/sdl2-config -------------------------------------------------------------------------------- /libsdl/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/sdl2-config.in -------------------------------------------------------------------------------- /libsdl/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/sdl2.m4 -------------------------------------------------------------------------------- /libsdl/sdl2.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/sdl2.pc -------------------------------------------------------------------------------- /libsdl/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/sdl2.pc.in -------------------------------------------------------------------------------- /libsdl/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL.c -------------------------------------------------------------------------------- /libsdl/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_assert.c -------------------------------------------------------------------------------- /libsdl/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_assert_c.h -------------------------------------------------------------------------------- /libsdl/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_error.c -------------------------------------------------------------------------------- /libsdl/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_error_c.h -------------------------------------------------------------------------------- /libsdl/src/SDL_fatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_fatal.c -------------------------------------------------------------------------------- /libsdl/src/SDL_fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_fatal.h -------------------------------------------------------------------------------- /libsdl/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_hints.c -------------------------------------------------------------------------------- /libsdl/src/SDL_hints_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_hints_c.h -------------------------------------------------------------------------------- /libsdl/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/SDL_log.c -------------------------------------------------------------------------------- /libsdl/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /libsdl/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /libsdl/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /libsdl/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /libsdl/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/events/SDL_quit.c -------------------------------------------------------------------------------- /libsdl/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /libsdl/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/e_atan2.c -------------------------------------------------------------------------------- /libsdl/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/e_log.c -------------------------------------------------------------------------------- /libsdl/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/e_pow.c -------------------------------------------------------------------------------- /libsdl/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /libsdl/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /libsdl/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/k_cos.c -------------------------------------------------------------------------------- /libsdl/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /libsdl/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/k_sin.c -------------------------------------------------------------------------------- /libsdl/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/math_libm.h -------------------------------------------------------------------------------- /libsdl/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/s_atan.c -------------------------------------------------------------------------------- /libsdl/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/s_copysign.c -------------------------------------------------------------------------------- /libsdl/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/s_cos.c -------------------------------------------------------------------------------- /libsdl/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/s_fabs.c -------------------------------------------------------------------------------- /libsdl/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/s_floor.c -------------------------------------------------------------------------------- /libsdl/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /libsdl/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/libm/s_sin.c -------------------------------------------------------------------------------- /libsdl/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/power/SDL_power.c -------------------------------------------------------------------------------- /libsdl/src/render/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/render/mmx.h -------------------------------------------------------------------------------- /libsdl/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /libsdl/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/video/SDL_blit.c -------------------------------------------------------------------------------- /libsdl/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/video/SDL_blit.h -------------------------------------------------------------------------------- /libsdl/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /libsdl/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/video/SDL_rect.c -------------------------------------------------------------------------------- /libsdl/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/video/SDL_shape.c -------------------------------------------------------------------------------- /libsdl/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/video/SDL_video.c -------------------------------------------------------------------------------- /libsdl/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/src/video/x11/edid.h -------------------------------------------------------------------------------- /libsdl/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/COPYING -------------------------------------------------------------------------------- /libsdl/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/Makefile.in -------------------------------------------------------------------------------- /libsdl/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/README -------------------------------------------------------------------------------- /libsdl/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/acinclude.m4 -------------------------------------------------------------------------------- /libsdl/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/aclocal.m4 -------------------------------------------------------------------------------- /libsdl/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/autogen.sh -------------------------------------------------------------------------------- /libsdl/test/automated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/automated/README -------------------------------------------------------------------------------- /libsdl/test/automated/rwops/read: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /libsdl/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/checkkeys.c -------------------------------------------------------------------------------- /libsdl/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/configure -------------------------------------------------------------------------------- /libsdl/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/configure.in -------------------------------------------------------------------------------- /libsdl/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/gcc-fat.sh -------------------------------------------------------------------------------- /libsdl/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/loopwave.c -------------------------------------------------------------------------------- /libsdl/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/moose.dat -------------------------------------------------------------------------------- /libsdl/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/picture.xbm -------------------------------------------------------------------------------- /libsdl/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/sample.bmp -------------------------------------------------------------------------------- /libsdl/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/sample.wav -------------------------------------------------------------------------------- /libsdl/test/test-automation/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsdl/test/test-automation/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsdl/test/test-automation/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsdl/test/test-automation/tests/testrwops/read: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /libsdl/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testatomic.c -------------------------------------------------------------------------------- /libsdl/test/testaudioinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testaudioinfo.c -------------------------------------------------------------------------------- /libsdl/test/testautomation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testautomation.c -------------------------------------------------------------------------------- /libsdl/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testdraw2.c -------------------------------------------------------------------------------- /libsdl/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testerror.c -------------------------------------------------------------------------------- /libsdl/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testfile.c -------------------------------------------------------------------------------- /libsdl/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testgesture.c -------------------------------------------------------------------------------- /libsdl/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testgl2.c -------------------------------------------------------------------------------- /libsdl/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testgles.c -------------------------------------------------------------------------------- /libsdl/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testhaptic.c -------------------------------------------------------------------------------- /libsdl/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testiconv.c -------------------------------------------------------------------------------- /libsdl/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testime.c -------------------------------------------------------------------------------- /libsdl/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testjoystick.c -------------------------------------------------------------------------------- /libsdl/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testkeys.c -------------------------------------------------------------------------------- /libsdl/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testloadso.c -------------------------------------------------------------------------------- /libsdl/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testlock.c -------------------------------------------------------------------------------- /libsdl/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testmessage.c -------------------------------------------------------------------------------- /libsdl/test/testmultiaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testmultiaudio.c -------------------------------------------------------------------------------- /libsdl/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testnative.c -------------------------------------------------------------------------------- /libsdl/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testnative.h -------------------------------------------------------------------------------- /libsdl/test/testnativew32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testnativew32.c -------------------------------------------------------------------------------- /libsdl/test/testnativex11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testnativex11.c -------------------------------------------------------------------------------- /libsdl/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testoverlay2.c -------------------------------------------------------------------------------- /libsdl/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testplatform.c -------------------------------------------------------------------------------- /libsdl/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testpower.c -------------------------------------------------------------------------------- /libsdl/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testrelative.c -------------------------------------------------------------------------------- /libsdl/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testresample.c -------------------------------------------------------------------------------- /libsdl/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testrumble.c -------------------------------------------------------------------------------- /libsdl/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testscale.c -------------------------------------------------------------------------------- /libsdl/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testsem.c -------------------------------------------------------------------------------- /libsdl/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testshader.c -------------------------------------------------------------------------------- /libsdl/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testshape.c -------------------------------------------------------------------------------- /libsdl/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testsprite2.c -------------------------------------------------------------------------------- /libsdl/test/teststreaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/teststreaming.c -------------------------------------------------------------------------------- /libsdl/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testthread.c -------------------------------------------------------------------------------- /libsdl/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testtimer.c -------------------------------------------------------------------------------- /libsdl/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testver.c -------------------------------------------------------------------------------- /libsdl/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/testwm2.c -------------------------------------------------------------------------------- /libsdl/test/torturethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/torturethread.c -------------------------------------------------------------------------------- /libsdl/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libsdl/test/utf8.txt -------------------------------------------------------------------------------- /libssh2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/AUTHORS -------------------------------------------------------------------------------- /libssh2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/COPYING -------------------------------------------------------------------------------- /libssh2/ChangeLog: -------------------------------------------------------------------------------- 1 | see NEWS 2 | -------------------------------------------------------------------------------- /libssh2/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/HACKING -------------------------------------------------------------------------------- /libssh2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/INSTALL -------------------------------------------------------------------------------- /libssh2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/Makefile -------------------------------------------------------------------------------- /libssh2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/Makefile.am -------------------------------------------------------------------------------- /libssh2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/Makefile.in -------------------------------------------------------------------------------- /libssh2/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/Makefile.inc -------------------------------------------------------------------------------- /libssh2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/NEWS -------------------------------------------------------------------------------- /libssh2/NMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/NMakefile -------------------------------------------------------------------------------- /libssh2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/README -------------------------------------------------------------------------------- /libssh2/RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/RELEASE-NOTES -------------------------------------------------------------------------------- /libssh2/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/TODO -------------------------------------------------------------------------------- /libssh2/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/acinclude.m4 -------------------------------------------------------------------------------- /libssh2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/aclocal.m4 -------------------------------------------------------------------------------- /libssh2/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/buildconf -------------------------------------------------------------------------------- /libssh2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/config.guess -------------------------------------------------------------------------------- /libssh2/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/config.log -------------------------------------------------------------------------------- /libssh2/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/config.rpath -------------------------------------------------------------------------------- /libssh2/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/config.status -------------------------------------------------------------------------------- /libssh2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/config.sub -------------------------------------------------------------------------------- /libssh2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/configure -------------------------------------------------------------------------------- /libssh2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/configure.ac -------------------------------------------------------------------------------- /libssh2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/depcomp -------------------------------------------------------------------------------- /libssh2/docs/BINDINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/BINDINGS -------------------------------------------------------------------------------- /libssh2/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/Makefile -------------------------------------------------------------------------------- /libssh2/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/Makefile.am -------------------------------------------------------------------------------- /libssh2/docs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/Makefile.in -------------------------------------------------------------------------------- /libssh2/docs/libssh2_exit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/libssh2_exit.3 -------------------------------------------------------------------------------- /libssh2/docs/libssh2_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/libssh2_free.3 -------------------------------------------------------------------------------- /libssh2/docs/libssh2_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/libssh2_init.3 -------------------------------------------------------------------------------- /libssh2/docs/libssh2_poll.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/libssh2_poll.3 -------------------------------------------------------------------------------- /libssh2/docs/libssh2_sftp_fstatvfs.3: -------------------------------------------------------------------------------- 1 | .so man3/libssh2_sftp_statvfs.3 2 | -------------------------------------------------------------------------------- /libssh2/docs/libssh2_trace.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/libssh2_trace.3 -------------------------------------------------------------------------------- /libssh2/docs/template.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/docs/template.3 -------------------------------------------------------------------------------- /libssh2/example/.deps/scp.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/.deps/scp.Po -------------------------------------------------------------------------------- /libssh2/example/.deps/x11.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/.deps/x11.Po -------------------------------------------------------------------------------- /libssh2/example/.libs/scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/.libs/scp -------------------------------------------------------------------------------- /libssh2/example/.libs/sftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/.libs/sftp -------------------------------------------------------------------------------- /libssh2/example/.libs/ssh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/.libs/ssh2 -------------------------------------------------------------------------------- /libssh2/example/.libs/x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/.libs/x11 -------------------------------------------------------------------------------- /libssh2/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/Makefile -------------------------------------------------------------------------------- /libssh2/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/Makefile.am -------------------------------------------------------------------------------- /libssh2/example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/Makefile.in -------------------------------------------------------------------------------- /libssh2/example/direct_tcpip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/direct_tcpip -------------------------------------------------------------------------------- /libssh2/example/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/e -------------------------------------------------------------------------------- /libssh2/example/scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/scp -------------------------------------------------------------------------------- /libssh2/example/scp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/scp.c -------------------------------------------------------------------------------- /libssh2/example/scp_nonblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/scp_nonblock -------------------------------------------------------------------------------- /libssh2/example/scp_write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/scp_write -------------------------------------------------------------------------------- /libssh2/example/scp_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/scp_write.c -------------------------------------------------------------------------------- /libssh2/example/sftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftp -------------------------------------------------------------------------------- /libssh2/example/sftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftp.c -------------------------------------------------------------------------------- /libssh2/example/sftp_append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftp_append -------------------------------------------------------------------------------- /libssh2/example/sftp_mkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftp_mkdir -------------------------------------------------------------------------------- /libssh2/example/sftp_mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftp_mkdir.c -------------------------------------------------------------------------------- /libssh2/example/sftp_write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftp_write -------------------------------------------------------------------------------- /libssh2/example/sftp_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftp_write.c -------------------------------------------------------------------------------- /libssh2/example/sftpdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftpdir -------------------------------------------------------------------------------- /libssh2/example/sftpdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/sftpdir.c -------------------------------------------------------------------------------- /libssh2/example/ssh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2 -------------------------------------------------------------------------------- /libssh2/example/ssh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2.c -------------------------------------------------------------------------------- /libssh2/example/ssh2_agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2_agent -------------------------------------------------------------------------------- /libssh2/example/ssh2_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2_agent.c -------------------------------------------------------------------------------- /libssh2/example/ssh2_echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2_echo -------------------------------------------------------------------------------- /libssh2/example/ssh2_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2_echo.c -------------------------------------------------------------------------------- /libssh2/example/ssh2_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2_exec -------------------------------------------------------------------------------- /libssh2/example/ssh2_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/ssh2_exec.c -------------------------------------------------------------------------------- /libssh2/example/stamp-h2: -------------------------------------------------------------------------------- 1 | timestamp for example/libssh2_config.h 2 | -------------------------------------------------------------------------------- /libssh2/example/x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/x11 -------------------------------------------------------------------------------- /libssh2/example/x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/example/x11.c -------------------------------------------------------------------------------- /libssh2/get_ver.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/get_ver.awk -------------------------------------------------------------------------------- /libssh2/include/libssh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/include/libssh2.h -------------------------------------------------------------------------------- /libssh2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/install-sh -------------------------------------------------------------------------------- /libssh2/libssh2.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/libssh2.pc -------------------------------------------------------------------------------- /libssh2/libssh2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/libssh2.pc.in -------------------------------------------------------------------------------- /libssh2/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/libtool -------------------------------------------------------------------------------- /libssh2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/ltmain.sh -------------------------------------------------------------------------------- /libssh2/m4/autobuild.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/autobuild.m4 -------------------------------------------------------------------------------- /libssh2/m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/lib-ld.m4 -------------------------------------------------------------------------------- /libssh2/m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/lib-link.m4 -------------------------------------------------------------------------------- /libssh2/m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /libssh2/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/libtool.m4 -------------------------------------------------------------------------------- /libssh2/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/ltoptions.m4 -------------------------------------------------------------------------------- /libssh2/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/ltsugar.m4 -------------------------------------------------------------------------------- /libssh2/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/ltversion.m4 -------------------------------------------------------------------------------- /libssh2/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /libssh2/maketgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/maketgz -------------------------------------------------------------------------------- /libssh2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/missing -------------------------------------------------------------------------------- /libssh2/nw/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/nw/GNUmakefile -------------------------------------------------------------------------------- /libssh2/nw/keepscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/nw/keepscreen.c -------------------------------------------------------------------------------- /libssh2/nw/nwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/nw/nwlib.c -------------------------------------------------------------------------------- /libssh2/nw/test/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/nw/test/GNUmakefile -------------------------------------------------------------------------------- /libssh2/src/.deps/agent.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/agent.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/comp.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/comp.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/crypt.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/crypt.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/global.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/global.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/kex.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/kex.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/mac.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/mac.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/misc.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/misc.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/packet.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/packet.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/pem.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/pem.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/scp.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/scp.Plo -------------------------------------------------------------------------------- /libssh2/src/.deps/sftp.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.deps/sftp.Plo -------------------------------------------------------------------------------- /libssh2/src/.libs/libssh2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.libs/libssh2.a -------------------------------------------------------------------------------- /libssh2/src/.libs/libssh2.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/.libs/libssh2.la -------------------------------------------------------------------------------- /libssh2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/Makefile -------------------------------------------------------------------------------- /libssh2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/Makefile.am -------------------------------------------------------------------------------- /libssh2/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/Makefile.in -------------------------------------------------------------------------------- /libssh2/src/NMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/NMakefile -------------------------------------------------------------------------------- /libssh2/src/agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/agent.c -------------------------------------------------------------------------------- /libssh2/src/agent.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/agent.lo -------------------------------------------------------------------------------- /libssh2/src/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/channel.c -------------------------------------------------------------------------------- /libssh2/src/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/channel.h -------------------------------------------------------------------------------- /libssh2/src/channel.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/channel.lo -------------------------------------------------------------------------------- /libssh2/src/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/comp.c -------------------------------------------------------------------------------- /libssh2/src/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/comp.h -------------------------------------------------------------------------------- /libssh2/src/comp.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/comp.lo -------------------------------------------------------------------------------- /libssh2/src/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/crypt.c -------------------------------------------------------------------------------- /libssh2/src/crypt.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/crypt.lo -------------------------------------------------------------------------------- /libssh2/src/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/crypto.h -------------------------------------------------------------------------------- /libssh2/src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/global.c -------------------------------------------------------------------------------- /libssh2/src/global.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/global.lo -------------------------------------------------------------------------------- /libssh2/src/hostkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/hostkey.c -------------------------------------------------------------------------------- /libssh2/src/hostkey.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/hostkey.lo -------------------------------------------------------------------------------- /libssh2/src/keepalive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/keepalive.c -------------------------------------------------------------------------------- /libssh2/src/keepalive.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/keepalive.lo -------------------------------------------------------------------------------- /libssh2/src/kex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/kex.c -------------------------------------------------------------------------------- /libssh2/src/kex.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/kex.lo -------------------------------------------------------------------------------- /libssh2/src/knownhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/knownhost.c -------------------------------------------------------------------------------- /libssh2/src/knownhost.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/knownhost.lo -------------------------------------------------------------------------------- /libssh2/src/libgcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/libgcrypt.c -------------------------------------------------------------------------------- /libssh2/src/libgcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/libgcrypt.h -------------------------------------------------------------------------------- /libssh2/src/libgcrypt.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/libgcrypt.lo -------------------------------------------------------------------------------- /libssh2/src/libssh2.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/libssh2.la -------------------------------------------------------------------------------- /libssh2/src/libssh2_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/libssh2_config.h -------------------------------------------------------------------------------- /libssh2/src/libssh2_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/libssh2_priv.h -------------------------------------------------------------------------------- /libssh2/src/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/mac.c -------------------------------------------------------------------------------- /libssh2/src/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/mac.h -------------------------------------------------------------------------------- /libssh2/src/mac.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/mac.lo -------------------------------------------------------------------------------- /libssh2/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/misc.c -------------------------------------------------------------------------------- /libssh2/src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/misc.h -------------------------------------------------------------------------------- /libssh2/src/misc.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/misc.lo -------------------------------------------------------------------------------- /libssh2/src/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/openssl.c -------------------------------------------------------------------------------- /libssh2/src/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/openssl.h -------------------------------------------------------------------------------- /libssh2/src/openssl.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/openssl.lo -------------------------------------------------------------------------------- /libssh2/src/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/packet.c -------------------------------------------------------------------------------- /libssh2/src/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/packet.h -------------------------------------------------------------------------------- /libssh2/src/packet.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/packet.lo -------------------------------------------------------------------------------- /libssh2/src/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/pem.c -------------------------------------------------------------------------------- /libssh2/src/pem.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/pem.lo -------------------------------------------------------------------------------- /libssh2/src/publickey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/publickey.c -------------------------------------------------------------------------------- /libssh2/src/publickey.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/publickey.lo -------------------------------------------------------------------------------- /libssh2/src/scp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/scp.c -------------------------------------------------------------------------------- /libssh2/src/scp.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/scp.lo -------------------------------------------------------------------------------- /libssh2/src/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/session.c -------------------------------------------------------------------------------- /libssh2/src/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/session.h -------------------------------------------------------------------------------- /libssh2/src/session.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/session.lo -------------------------------------------------------------------------------- /libssh2/src/sftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/sftp.c -------------------------------------------------------------------------------- /libssh2/src/sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/sftp.h -------------------------------------------------------------------------------- /libssh2/src/sftp.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/sftp.lo -------------------------------------------------------------------------------- /libssh2/src/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for src/libssh2_config.h 2 | -------------------------------------------------------------------------------- /libssh2/src/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/transport.c -------------------------------------------------------------------------------- /libssh2/src/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/transport.h -------------------------------------------------------------------------------- /libssh2/src/transport.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/transport.lo -------------------------------------------------------------------------------- /libssh2/src/userauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/userauth.c -------------------------------------------------------------------------------- /libssh2/src/userauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/userauth.h -------------------------------------------------------------------------------- /libssh2/src/userauth.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/userauth.lo -------------------------------------------------------------------------------- /libssh2/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/version.c -------------------------------------------------------------------------------- /libssh2/src/version.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/src/version.lo -------------------------------------------------------------------------------- /libssh2/tests/.deps/simple.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libssh2/tests/.deps/ssh2.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/.deps/ssh2.Po -------------------------------------------------------------------------------- /libssh2/tests/.libs/ssh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/.libs/ssh2 -------------------------------------------------------------------------------- /libssh2/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/Makefile -------------------------------------------------------------------------------- /libssh2/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/Makefile.am -------------------------------------------------------------------------------- /libssh2/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/Makefile.in -------------------------------------------------------------------------------- /libssh2/tests/etc/host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/etc/host -------------------------------------------------------------------------------- /libssh2/tests/etc/host.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/etc/host.pub -------------------------------------------------------------------------------- /libssh2/tests/etc/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/etc/user -------------------------------------------------------------------------------- /libssh2/tests/etc/user.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/etc/user.pub -------------------------------------------------------------------------------- /libssh2/tests/mansyntax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/mansyntax.sh -------------------------------------------------------------------------------- /libssh2/tests/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/simple.c -------------------------------------------------------------------------------- /libssh2/tests/ssh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/ssh2 -------------------------------------------------------------------------------- /libssh2/tests/ssh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/ssh2.c -------------------------------------------------------------------------------- /libssh2/tests/ssh2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/tests/ssh2.sh -------------------------------------------------------------------------------- /libssh2/vms/libssh2_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/vms/libssh2_config.h -------------------------------------------------------------------------------- /libssh2/vms/man2help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/vms/man2help.c -------------------------------------------------------------------------------- /libssh2/vms/readme.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/vms/readme.vms -------------------------------------------------------------------------------- /libssh2/win32/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/GNUmakefile -------------------------------------------------------------------------------- /libssh2/win32/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/config.mk -------------------------------------------------------------------------------- /libssh2/win32/libssh2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/libssh2.dsp -------------------------------------------------------------------------------- /libssh2/win32/libssh2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/libssh2.dsw -------------------------------------------------------------------------------- /libssh2/win32/libssh2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/libssh2.rc -------------------------------------------------------------------------------- /libssh2/win32/msvcproj.foot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/msvcproj.foot -------------------------------------------------------------------------------- /libssh2/win32/msvcproj.head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/msvcproj.head -------------------------------------------------------------------------------- /libssh2/win32/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/rules.mk -------------------------------------------------------------------------------- /libssh2/win32/tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2/win32/tests.dsp -------------------------------------------------------------------------------- /libssh2_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libssh2_config.h -------------------------------------------------------------------------------- /libvterm/.bzr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/.bzr/README -------------------------------------------------------------------------------- /libvterm/.bzr/branch-format: -------------------------------------------------------------------------------- 1 | Bazaar-NG meta directory, format 1 2 | -------------------------------------------------------------------------------- /libvterm/.bzr/branch/format: -------------------------------------------------------------------------------- 1 | Bazaar Branch Format 6 (bzr 0.15) 2 | -------------------------------------------------------------------------------- /libvterm/.bzr/branch/tags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libvterm/.bzr/checkout/conflicts: -------------------------------------------------------------------------------- 1 | BZR conflict list format 1 2 | -------------------------------------------------------------------------------- /libvterm/.bzr/checkout/format: -------------------------------------------------------------------------------- 1 | Bazaar Working Tree Format 4 (bzr 0.15) 2 | -------------------------------------------------------------------------------- /libvterm/.bzr/repository/format: -------------------------------------------------------------------------------- 1 | Bazaar pack repository format 1 (needs bzr 0.92) 2 | -------------------------------------------------------------------------------- /libvterm/.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/.bzrignore -------------------------------------------------------------------------------- /libvterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/LICENSE -------------------------------------------------------------------------------- /libvterm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/Makefile -------------------------------------------------------------------------------- /libvterm/bin/.libs/unterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/bin/.libs/unterm -------------------------------------------------------------------------------- /libvterm/bin/unterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/bin/unterm.c -------------------------------------------------------------------------------- /libvterm/bin/vterm-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/bin/vterm-dump.c -------------------------------------------------------------------------------- /libvterm/doc/URLs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/doc/URLs -------------------------------------------------------------------------------- /libvterm/doc/seqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/doc/seqs.txt -------------------------------------------------------------------------------- /libvterm/include/vterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/include/vterm.h -------------------------------------------------------------------------------- /libvterm/src/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/encoding.c -------------------------------------------------------------------------------- /libvterm/src/encoding/uk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/encoding/uk.inc -------------------------------------------------------------------------------- /libvterm/src/encoding/uk.tbl: -------------------------------------------------------------------------------- 1 | 2/3 = "£" 2 | -------------------------------------------------------------------------------- /libvterm/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/input.c -------------------------------------------------------------------------------- /libvterm/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/parser.c -------------------------------------------------------------------------------- /libvterm/src/pen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/pen.c -------------------------------------------------------------------------------- /libvterm/src/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/rect.h -------------------------------------------------------------------------------- /libvterm/src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/screen.c -------------------------------------------------------------------------------- /libvterm/src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/state.c -------------------------------------------------------------------------------- /libvterm/src/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/unicode.c -------------------------------------------------------------------------------- /libvterm/src/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/utf8.h -------------------------------------------------------------------------------- /libvterm/src/vterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/src/vterm.c -------------------------------------------------------------------------------- /libvterm/t/02parser.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/02parser.test -------------------------------------------------------------------------------- /libvterm/t/13state_edit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/13state_edit.test -------------------------------------------------------------------------------- /libvterm/t/15state_mode.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/15state_mode.test -------------------------------------------------------------------------------- /libvterm/t/22state_save.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/22state_save.test -------------------------------------------------------------------------------- /libvterm/t/30pen.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/30pen.test -------------------------------------------------------------------------------- /libvterm/t/44screen_pen.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/44screen_pen.test -------------------------------------------------------------------------------- /libvterm/t/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/harness.c -------------------------------------------------------------------------------- /libvterm/t/run-test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/t/run-test.pl -------------------------------------------------------------------------------- /libvterm/tbl2inc_c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/tbl2inc_c.pl -------------------------------------------------------------------------------- /libvterm/vterm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/libvterm/vterm.pc.in -------------------------------------------------------------------------------- /local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/local.c -------------------------------------------------------------------------------- /local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/local.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/main.c -------------------------------------------------------------------------------- /ngui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui.c -------------------------------------------------------------------------------- /ngui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui.h -------------------------------------------------------------------------------- /ngui_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_button.c -------------------------------------------------------------------------------- /ngui_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_button.h -------------------------------------------------------------------------------- /ngui_flowbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_flowbox.c -------------------------------------------------------------------------------- /ngui_flowbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_flowbox.h -------------------------------------------------------------------------------- /ngui_info_prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_info_prompt.c -------------------------------------------------------------------------------- /ngui_info_prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_info_prompt.h -------------------------------------------------------------------------------- /ngui_scrollbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_scrollbar.c -------------------------------------------------------------------------------- /ngui_stringselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_stringselect.c -------------------------------------------------------------------------------- /ngui_stringselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_stringselect.h -------------------------------------------------------------------------------- /ngui_textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_textbox.c -------------------------------------------------------------------------------- /ngui_textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_textbox.h -------------------------------------------------------------------------------- /ngui_textlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_textlabel.c -------------------------------------------------------------------------------- /ngui_textlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ngui_textlabel.h -------------------------------------------------------------------------------- /nsdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/nsdl.c -------------------------------------------------------------------------------- /nsdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/nsdl.h -------------------------------------------------------------------------------- /nunifont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/nunifont.c -------------------------------------------------------------------------------- /nunifont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/nunifont.h -------------------------------------------------------------------------------- /osx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/osx/README -------------------------------------------------------------------------------- /osx/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/osx/SDL_config.h -------------------------------------------------------------------------------- /osx/hterm.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /osx/osx_pasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/osx/osx_pasteboard.h -------------------------------------------------------------------------------- /osx/osx_pasteboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/osx/osx_pasteboard.m -------------------------------------------------------------------------------- /regis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/regis.c -------------------------------------------------------------------------------- /regis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/regis.h -------------------------------------------------------------------------------- /ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ssh.c -------------------------------------------------------------------------------- /ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/ssh.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/test/main.c -------------------------------------------------------------------------------- /test/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/test/utf.c -------------------------------------------------------------------------------- /test/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/test/utf.h -------------------------------------------------------------------------------- /unifont_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/unifont_conv.c -------------------------------------------------------------------------------- /utf8proc/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/Changelog -------------------------------------------------------------------------------- /utf8proc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/LICENSE -------------------------------------------------------------------------------- /utf8proc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/Makefile -------------------------------------------------------------------------------- /utf8proc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/README -------------------------------------------------------------------------------- /utf8proc/data_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/data_generator.rb -------------------------------------------------------------------------------- /utf8proc/lump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/lump.txt -------------------------------------------------------------------------------- /utf8proc/pgsql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/pgsql/Makefile -------------------------------------------------------------------------------- /utf8proc/pgsql/utf8proc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/pgsql/utf8proc.sql -------------------------------------------------------------------------------- /utf8proc/ruby/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile("utf8proc_native") 3 | -------------------------------------------------------------------------------- /utf8proc/ruby/gem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/ruby/gem/LICENSE -------------------------------------------------------------------------------- /utf8proc/ruby/utf8proc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/ruby/utf8proc.rb -------------------------------------------------------------------------------- /utf8proc/utf8proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/utf8proc.c -------------------------------------------------------------------------------- /utf8proc/utf8proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/utf8proc.h -------------------------------------------------------------------------------- /utf8proc/utf8proc_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/utf8proc/utf8proc_data.c -------------------------------------------------------------------------------- /uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/uthash.h -------------------------------------------------------------------------------- /virtual_buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/virtual_buttons.c -------------------------------------------------------------------------------- /virtual_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/virtual_buttons.h -------------------------------------------------------------------------------- /widthmap_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new299/hackterm/HEAD/widthmap_static.h --------------------------------------------------------------------------------