├── .circleci └── config.yml ├── .gitattributes ├── .gitignore ├── .hgeol ├── .hgignore ├── GNUmakefile ├── README.md ├── Squirrel.xml ├── VC2015 ├── autoexp.txt ├── gltestplus.def ├── gltestplus.sln ├── gltestplus.vcxproj └── gltestplus.vcxproj.filters ├── autoexec.cfg ├── clib ├── GNUmakefile ├── ReadMe.txt ├── VC2008 │ ├── clib.vcproj │ └── stdint.h ├── VC2012 │ └── clib.vcxproj ├── clib.vcproj ├── include │ ├── GL │ │ ├── ch05.html │ │ ├── glext.h │ │ ├── glut.h │ │ └── glut_old.h │ └── clib │ │ ├── MultiList.h │ │ ├── amat2.h │ │ ├── amat3.h │ │ ├── amat4.h │ │ ├── aquat.h │ │ ├── aquatrot.h │ │ ├── avec3.h │ │ ├── avec4.h │ │ ├── c.h │ │ ├── cfloat.h │ │ ├── circut.h │ │ ├── colseq │ │ ├── color.h │ │ ├── cs.h │ │ ├── cs2.h │ │ ├── cs2x.h │ │ └── cs2xcut.h │ │ ├── crc32.h │ │ ├── dstr.h │ │ ├── gl │ │ ├── cull.h │ │ ├── fbo.h │ │ ├── gldraw.h │ │ ├── gltext.h │ │ └── multitex.h │ │ ├── lzw │ │ └── lzw.h │ │ ├── mathdef.h │ │ ├── rseq.h │ │ ├── sound │ │ ├── wavemixer.h │ │ └── wavesum.h │ │ ├── stats.h │ │ ├── suf │ │ ├── suf.h │ │ ├── sufbin.h │ │ ├── sufdraw.h │ │ └── sufvbo.h │ │ ├── timemeas.h │ │ ├── wavsound.h │ │ └── zip │ │ ├── UnZip.h │ │ └── UniformLoader.h ├── src │ ├── UnZip.c │ ├── UniformLoader.c │ ├── amat3.c │ ├── amat4.c │ ├── aquat.c │ ├── aquatrot.c │ ├── asm │ │ ├── testmove.h │ │ └── testmove.nsm │ ├── avec3.c │ ├── cfloat.c │ ├── circut.c │ ├── colseq │ │ ├── cs.c │ │ ├── cs2.c │ │ ├── cs2x.c │ │ ├── cs2xcut.c │ │ └── cs2xedit.c │ ├── crc32.c │ ├── dstr.c │ ├── gl │ │ ├── cull.c │ │ ├── gldraw.c │ │ ├── glfont.c │ │ └── wgltext.c │ ├── lzw │ │ ├── lzc.c │ │ └── lzuc.c │ ├── rseq.c │ ├── sound │ │ ├── wavemixer.c │ │ └── wavesum.nsm │ ├── suf │ │ ├── suf.c │ │ ├── sufdraw.c │ │ ├── sufloc.c │ │ ├── sufreloc.c │ │ ├── sufsrc.c │ │ └── sufvbo.c │ ├── timemeas.c │ └── wavsound.c └── tests │ ├── UnZip_test.c │ ├── crc32_test.c │ └── rseq_test.c ├── cpplib ├── GNUmakefile ├── ReadMe.txt ├── VC2008 │ └── cpplib.vcproj ├── VC2012 │ └── cpplib.vcxproj ├── cpplib.vcproj ├── include │ └── cpplib │ │ ├── CRC32.h │ │ ├── RandomSequence.h │ │ ├── dstring.h │ │ ├── gl │ │ └── cullplus.h │ │ ├── mat2.h │ │ ├── mat3.h │ │ ├── mat4.h │ │ ├── mathcommon.h │ │ ├── quat.h │ │ ├── vec2.h │ │ ├── vec3.h │ │ └── vec4.h ├── src │ ├── dstring.cpp │ ├── gl │ │ └── cull.cpp │ ├── mat3.cpp │ ├── mat4.cpp │ ├── quat.cpp │ ├── vec3.cpp │ └── vec4.cpp └── tests │ ├── crc32_test.cpp │ ├── dstrtest.cpp │ ├── mat3_test.cpp │ └── mat3_test │ └── VC2012 │ ├── mat3_test.vcxproj │ └── mat3_test.vcxproj.filters ├── credits.txt ├── data ├── Ceres.ssd ├── Earth.ssd ├── Jupiter.ssd ├── Mars.ssd ├── Mercury.ssd ├── Saturn.ssd ├── Venus.ssd ├── galaxy.png ├── sol.ssd ├── space.ssd ├── space_debug.ssd └── syl.txt ├── dedsvr.cfg ├── git-bullet.sh ├── gp.ico ├── images ├── gltestss0189.jpg ├── gltestss0230.jpg └── gltestss0276.jpg ├── include ├── Application.h ├── Autonomous.h ├── BeamProjectile.h ├── BinDiff.h ├── Builder.h ├── Bullet.h ├── ClientMessage.h ├── CoordSys-find.h ├── CoordSys-property.h ├── CoordSys.h ├── Docker.h ├── DrawTextureSphere-forward.h ├── Entity.h ├── EntityCommand.h ├── EntityRegister.h ├── ExplosiveBullet.h ├── Frigate.h ├── Game.h ├── GetFov.h ├── Inventory-forward.h ├── Inventory.h ├── LTurret.h ├── MTurret.h ├── Mesh-forward.h ├── Mesh.h ├── Missile.h ├── Model-forward.h ├── ModelEntity.h ├── Motion-forward.h ├── Observable.h ├── Player.h ├── RoundAstrobj.h ├── Server.h ├── Shipyard.h ├── SqInitProcess-ex.h ├── SqInitProcess.h ├── StarEnum.h ├── StaticInitializer.h ├── Universe.h ├── VariantRegister.h ├── Viewer.h ├── WarField_countEnt.h ├── Warpable.h ├── antiglut.h ├── arms.h ├── astro.h ├── astro_star.h ├── astrodef.h ├── astrodraw.h ├── audio │ ├── playSound.h │ └── wavemixer.h ├── bitmap.h ├── btadapt.h ├── cmd.h ├── draw │ ├── HDR.h │ ├── OpenGLState.h │ ├── ShaderBind.h │ ├── ShadowMap.h │ ├── VBO.h │ ├── WarDraw.h │ ├── blackbody.h │ ├── effects.h │ ├── material.h │ ├── mqoadapt.h │ └── ring-draw.h ├── dstring.h ├── export.h ├── glsl.h ├── glstack.h ├── glw │ ├── GLWbutton.h │ ├── GLWchart.h │ ├── GLWchat.h │ ├── GLWtaskBar.h │ ├── PopupMenu-forward.h │ ├── PopupMenu.h │ ├── glwindow.h │ └── message.h ├── judge.h ├── libmotion.h ├── motion.h ├── mqo.h ├── msg │ ├── GetCoverPointsMessage.h │ └── Message.h ├── serial.h ├── serial_util.h ├── shield.h ├── sqadapt.h ├── stellar_file.h ├── tefpol3d.h ├── tent3d.h ├── tent3d_forward.h ├── war.h ├── ysdnmmot.h └── yssurf.h ├── jpeg ├── Makefile.am ├── Makefile.in ├── README ├── VC2008 │ └── jpeg.vcproj ├── aclocal.m4 ├── ar-lib ├── cderror.h ├── cdjpeg.c ├── cdjpeg.h ├── cjpeg.1 ├── cjpeg.c ├── ckconfig.c ├── coderules.txt ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── djpeg.1 ├── djpeg.c ├── example.c ├── filelist.txt ├── install-sh ├── install.txt ├── jaricom.c ├── jcapimin.c ├── jcapistd.c ├── jcarith.c ├── jccoefct.c ├── jccolor.c ├── jcdctmgr.c ├── jchuff.c ├── jcinit.c ├── jcmainct.c ├── jcmarker.c ├── jcmaster.c ├── jcomapi.c ├── jconfig.bcc ├── jconfig.cfg ├── jconfig.dj ├── jconfig.mac ├── jconfig.manx ├── jconfig.mc6 ├── jconfig.sas ├── jconfig.st ├── jconfig.txt ├── jconfig.vc ├── jconfig.vms ├── jconfig.wat ├── jcparam.c ├── jcprepct.c ├── jcsample.c ├── jctrans.c ├── jdapimin.c ├── jdapistd.c ├── jdarith.c ├── jdatadst.c ├── jdatasrc.c ├── jdcoefct.c ├── jdcolor.c ├── jdct.h ├── jddctmgr.c ├── jdhuff.c ├── jdinput.c ├── jdmainct.c ├── jdmarker.c ├── jdmaster.c ├── jdmerge.c ├── jdosabcc.obj ├── jdosamsc.obj ├── jdosaobj.txt ├── jdpostct.c ├── jdsample.c ├── jdtrans.c ├── jerror.c ├── jerror.h ├── jfdctflt.c ├── jfdctfst.c ├── jfdctint.c ├── jidctflt.c ├── jidctfst.c ├── jidctint.c ├── jinclude.h ├── jmemansi.c ├── jmemdos.c ├── jmemdosa.asm ├── jmemmac.c ├── jmemmgr.c ├── jmemname.c ├── jmemnobs.c ├── jmemsys.h ├── jmorecfg.h ├── jpeg.vcxproj ├── jpegint.h ├── jpeglib.h ├── jpegtran.1 ├── jpegtran.c ├── jquant1.c ├── jquant2.c ├── jutils.c ├── jversion.h ├── libjpeg.map ├── libjpeg.txt ├── ltmain.sh ├── makcjpeg.st ├── makdjpeg.st ├── makeadsw.vc6 ├── makeasln.v10 ├── makecdep.vc6 ├── makecdsp.vc6 ├── makecfil.v10 ├── makecmak.vc6 ├── makecvcx.v10 ├── makeddep.vc6 ├── makeddsp.vc6 ├── makedfil.v10 ├── makedmak.vc6 ├── makedvcx.v10 ├── makefile.ansi ├── makefile.bcc ├── makefile.dj ├── makefile.manx ├── makefile.mc6 ├── makefile.mms ├── makefile.sas ├── makefile.unix ├── makefile.vc ├── makefile.vms ├── makefile.wat ├── makejdep.vc6 ├── makejdsp.vc6 ├── makejdsw.vc6 ├── makejfil.v10 ├── makejmak.vc6 ├── makejsln.v10 ├── makejvcx.v10 ├── makeproj.mac ├── makerdep.vc6 ├── makerdsp.vc6 ├── makerfil.v10 ├── makermak.vc6 ├── makervcx.v10 ├── maketdep.vc6 ├── maketdsp.vc6 ├── maketfil.v10 ├── maketmak.vc6 ├── maketvcx.v10 ├── makewdep.vc6 ├── makewdsp.vc6 ├── makewfil.v10 ├── makewmak.vc6 ├── makewvcx.v10 ├── makljpeg.st ├── maktjpeg.st ├── makvms.opt ├── missing ├── rdbmp.c ├── rdcolmap.c ├── rdgif.c ├── rdjpgcom.1 ├── rdjpgcom.c ├── rdppm.c ├── rdrle.c ├── rdswitch.c ├── rdtarga.c ├── readme.dos ├── structure.txt ├── testimg.bmp ├── testimg.jpg ├── testimg.ppm ├── testimgp.jpg ├── testorig.jpg ├── testprog.jpg ├── transupp.c ├── transupp.h ├── usage.txt ├── wizard.txt ├── wrbmp.c ├── wrgif.c ├── wrjpgcom.1 ├── wrjpgcom.c ├── wrppm.c ├── wrrle.c └── wrtarga.c ├── libogg ├── AUTHORS ├── CHANGES ├── COPYING ├── Makefile.am ├── README ├── autogen.sh ├── configure.in ├── include │ ├── Makefile.am │ └── ogg │ │ ├── Makefile.am │ │ ├── config_types.h.in │ │ ├── ogg.h │ │ └── os_types.h ├── libogg.spec.in ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── Ogg.xcodeproj │ │ └── project.pbxproj │ └── Ogg_Prefix.pch ├── ogg-uninstalled.pc.in ├── ogg.m4 ├── ogg.pc.in ├── src │ ├── Makefile.am │ ├── bitwise.c │ └── framing.c ├── symbian │ ├── bld.inf │ └── ogg.mmp └── win32 │ ├── VS2003 │ ├── libogg │ │ └── libogg.vcproj │ └── ogg.sln │ ├── VS2005 │ ├── libogg_dynamic.sln │ ├── libogg_dynamic.vcproj │ ├── libogg_static.sln │ └── libogg_static.vcproj │ ├── VS2008 │ ├── libogg_dynamic.sln │ ├── libogg_dynamic.vcproj │ ├── libogg_static.sln │ └── libogg_static.vcproj │ ├── VS2010 │ ├── libogg_dynamic.sln │ ├── libogg_dynamic.vcxproj │ ├── libogg_static.opensdf │ ├── libogg_static.sdf │ ├── libogg_static.sln │ └── libogg_static.vcxproj │ ├── VS2012 │ └── libogg_static.vcxproj │ ├── VS6 │ ├── build_ogg_dynamic.bat │ ├── build_ogg_dynamic_debug.bat │ ├── build_ogg_static.bat │ ├── build_ogg_static_debug.bat │ ├── ogg.dsw │ ├── ogg_dynamic.dsp │ └── ogg_static.dsp │ └── ogg.def ├── libvorbis ├── AUTHORS ├── CHANGES ├── COPYING ├── Makefile.am ├── README ├── autogen.sh ├── configure.ac ├── debian │ ├── changelog │ ├── control │ ├── copyright │ ├── libvorbis-dev.docs │ ├── libvorbis-dev.examples │ ├── libvorbis-dev.install │ ├── libvorbis0a.install │ ├── libvorbisenc2.install │ ├── libvorbisfile3.install │ ├── rules │ └── watch ├── examples │ ├── Makefile.am │ ├── chaining_example.c │ ├── decoder_example.c │ ├── encoder_example.c │ ├── frameview.pl │ ├── seeking_example.c │ └── vorbisfile_example.c ├── include │ ├── Makefile.am │ └── vorbis │ │ ├── Makefile.am │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h ├── lib │ ├── Makefile.am │ ├── analysis.c │ ├── backends.h │ ├── barkmel.c │ ├── bitrate.c │ ├── bitrate.h │ ├── block.c │ ├── books │ │ ├── Makefile.am │ │ ├── coupled │ │ │ ├── Makefile.am │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ ├── Makefile.am │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ ├── Makefile.am │ │ │ └── res_books_uncoupled.h │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── envelope.c │ ├── envelope.h │ ├── floor0.c │ ├── floor1.c │ ├── highlevel.h │ ├── info.c │ ├── lookup.c │ ├── lookup.h │ ├── lookup_data.h │ ├── lookups.pl │ ├── lpc.c │ ├── lpc.h │ ├── lsp.c │ ├── lsp.h │ ├── mapping0.c │ ├── masking.h │ ├── mdct.c │ ├── mdct.h │ ├── misc.c │ ├── misc.h │ ├── modes │ │ ├── Makefile.am │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ ├── os.h │ ├── psy.c │ ├── psy.h │ ├── psytune.c │ ├── registry.c │ ├── registry.h │ ├── res0.c │ ├── scales.h │ ├── sharedbook.c │ ├── smallft.c │ ├── smallft.h │ ├── synthesis.c │ ├── tone.c │ ├── vorbisenc.c │ ├── vorbisfile.c │ ├── window.c │ └── window.h ├── libvorbis.spec.in ├── m4 │ ├── Makefile.am │ ├── add_cflags.m4 │ ├── ogg.m4 │ └── pkg.m4 ├── macos │ ├── compat │ │ ├── strdup.c │ │ └── sys │ │ │ └── types.h │ ├── decoder_example.mcp │ ├── encoder_example.mcp │ ├── libvorbis.mcp │ ├── libvorbis.mcp.exp │ ├── libvorbisenc.mcp │ ├── libvorbisenc.mcp.exp │ ├── libvorbisfile.mcp │ ├── libvorbisfile.mcp.exp │ └── vorbis.mcp ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Vorbis.xcodeproj │ │ └── project.pbxproj ├── symbian │ ├── bld.inf │ ├── config.h │ └── vorbis.mmp ├── test │ ├── Makefile.am │ ├── test.c │ ├── util.c │ ├── util.h │ ├── write_read.c │ └── write_read.h ├── todo.txt ├── vorbis-uninstalled.pc.in ├── vorbis.m4 ├── vorbis.pc.in ├── vorbisenc-uninstalled.pc.in ├── vorbisenc.pc.in ├── vorbisfile-uninstalled.pc.in ├── vorbisfile.pc.in ├── vq │ ├── 16.vqs │ ├── 16u.vqs │ ├── 44c-1.vqs │ ├── 44c0.vqs │ ├── 44c1.vqs │ ├── 44c2.vqs │ ├── 44c3.vqs │ ├── 44c4.vqs │ ├── 44c5.vqs │ ├── 44c6.vqs │ ├── 44c7.vqs │ ├── 44c8.vqs │ ├── 44c9.vqs │ ├── 44p-1.vqs │ ├── 44p0.vqs │ ├── 44p1.vqs │ ├── 44p2.vqs │ ├── 44p3.vqs │ ├── 44p4.vqs │ ├── 44p5.vqs │ ├── 44p6.vqs │ ├── 44p7.vqs │ ├── 44p8.vqs │ ├── 44p9.vqs │ ├── 44u0.vqs │ ├── 44u1.vqs │ ├── 44u2.vqs │ ├── 44u3.vqs │ ├── 44u4.vqs │ ├── 44u5.vqs │ ├── 44u6.vqs │ ├── 44u7.vqs │ ├── 44u8.vqs │ ├── 44u9.vqs │ ├── 8.vqs │ ├── 8u.vqs │ ├── Makefile.am │ ├── bookutil.c │ ├── bookutil.h │ ├── distribution.c │ ├── floor_11.vqs │ ├── floor_22.vqs │ ├── floor_44.vqs │ ├── huffbuild.c │ ├── latticebuild.c │ ├── latticetune.c │ ├── localcodebook.h │ ├── make_floor_books.pl │ ├── make_residue_books.pl │ ├── metrics.c │ ├── vqgen.c │ └── vqgen.h └── win32 │ ├── VS2005 │ ├── README │ ├── libogg.vsprops │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcproj │ │ └── libvorbis_static.vcproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcproj │ │ └── libvorbisfile_static.vcproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcproj │ │ └── vorbisdec_static.vcproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcproj │ │ └── vorbisenc_static.vcproj │ ├── VS2008 │ ├── README │ ├── libogg.vsprops │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcproj │ │ └── libvorbis_static.vcproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcproj │ │ └── libvorbisfile_static.vcproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcproj │ │ └── vorbisdec_static.vcproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcproj │ │ └── vorbisenc_static.vcproj │ ├── VS2010 │ ├── README │ ├── libogg.props │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcxproj │ │ └── libvorbis_static.vcxproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcxproj │ │ └── libvorbisfile_static.vcxproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcxproj │ │ └── vorbisdec_static.vcxproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcxproj │ │ └── vorbisenc_static.vcxproj │ ├── VS2012 │ ├── libogg.props │ ├── libvorbis │ │ └── libvorbis_static.vcxproj │ └── libvorbisfile │ │ └── libvorbisfile_static.vcxproj │ ├── vorbis.def │ ├── vorbisenc.def │ └── vorbisfile.def ├── lpng ├── ANNOUNCE ├── CHANGES ├── CMakeLists.txt ├── INSTALL ├── LICENSE ├── README ├── TODO ├── configure ├── contrib │ ├── 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 │ ├── pngminim │ │ ├── decoder │ │ │ ├── README │ │ │ ├── gather.sh │ │ │ ├── makefile │ │ │ └── pngusr.h │ │ ├── encoder │ │ │ ├── README │ │ │ ├── gather.sh │ │ │ ├── makefile │ │ │ └── pngusr.h │ │ └── preader │ │ │ ├── README │ │ │ ├── gather.sh │ │ │ ├── makefile │ │ │ └── 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 │ │ ├── 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 │ │ ├── ftbbn1g04.png │ │ ├── ftbbn2c16.png │ │ ├── ftbbn3p08.png │ │ ├── ftbgn2c16.png │ │ ├── ftbgn3p08.png │ │ ├── ftbrn2c08.png │ │ ├── ftbwn1g16.png │ │ ├── ftbwn3p08.png │ │ ├── ftbyn3p08.png │ │ ├── ftp0n1g08.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 ├── example.c ├── libpng-1.4.3.txt ├── libpng-config.in ├── libpng.3 ├── libpng.pc.in ├── libpngpf.3 ├── new_push_process_row.c ├── png.5 ├── png.c ├── png.h ├── pngbar.jpg ├── pngbar.png ├── pngconf.h ├── pngerror.c ├── pngget.c ├── pngmem.c ├── pngnow.png ├── pngpread.c ├── pngpriv.h ├── pngread.c ├── pngrio.c ├── pngrtran.c ├── pngrutil.c ├── pngset.c ├── pngtest.c ├── pngtest.png ├── pngtrans.c ├── pngwio.c ├── pngwrite.c ├── pngwtran.c ├── pngwutil.c ├── projects │ ├── visualc11 │ │ └── libpng.vcxproj │ ├── visualc6 │ │ ├── README.txt │ │ ├── libpng.dsp │ │ ├── libpng.dsw │ │ └── pngtest.dsp │ ├── visualc71 │ │ ├── PRJ0041.mak │ │ ├── README.txt │ │ ├── README_zlib.txt │ │ ├── libpng.sln │ │ ├── libpng.vcproj │ │ ├── pngtest.vcproj │ │ └── zlib.vcproj │ ├── visualc8 │ │ └── libpng.vcproj │ ├── vstudio │ │ ├── readme.txt │ │ ├── vstudio.sln │ │ └── zlib.props │ └── xcode │ │ ├── Info.plist │ │ ├── README.txt │ │ └── libpng.xcodeproj │ │ └── project.pbxproj └── scripts │ ├── README.txt │ ├── SCOPTIONS.ppc │ ├── 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.cygwin │ ├── 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.mingw │ ├── makefile.mips │ ├── makefile.msc │ ├── makefile.ne12bsd │ ├── makefile.netbsd │ ├── makefile.openbsd │ ├── makefile.os2 │ ├── makefile.sco │ ├── makefile.sggcc │ ├── makefile.sgi │ ├── makefile.so9 │ ├── makefile.solaris │ ├── makefile.solaris-x86 │ ├── makefile.std │ ├── makefile.sunos │ ├── makefile.tc3 │ ├── makefile.vcwin32 │ ├── makefile.watcom │ ├── makevms.com │ ├── png32ce.def │ ├── pngos2.def │ ├── pngwin.def │ ├── pngwin.rc │ └── smakefile.ppc ├── models ├── Assault.nut ├── Beamer.nut ├── Defender.nut ├── Destroyer.nut ├── GatlingTurret.nut ├── LMissileTurret.nut ├── LTurret.nut ├── MTurret.nut ├── RStation.nut ├── Sceptor.nut ├── Shipyard.nut ├── Warpable.nut ├── Worker.mqo ├── Worker.nut ├── assault.mqo ├── attacker_engine.bmp ├── attacker_engine_br.bmp ├── bbrail.bmp ├── beamer.mqo ├── beamer_panel.bmp ├── bricks.bmp ├── bridge.bmp ├── bridgetower.mqo ├── debris.mqo ├── defender.mqo ├── defender_barrel.png ├── defender_deploy.mot ├── defender_magazine.png ├── defender_magazine_br.png ├── defender_reload.mot ├── destroyer.mqo ├── doors.jpg ├── engine.bmp ├── engine2.bmp ├── engine2br.bmp ├── enginenozzle.png ├── enginenozzle_br.png ├── gradients.png ├── gradients.svg ├── interceptor.bmp ├── interceptor.mqo ├── interceptor_lod.mot ├── interceptor_reverser.mot ├── lturret.mqo ├── lturret1.mqo ├── lturret_blowback.mot ├── lturret_pitch.mot ├── missile.mqo ├── missile_body.bmp ├── missile_launcher.mqo ├── missile_launcher_deploy.mot ├── missilecasing.bmp ├── missilepod.bmp ├── rstation.mqo ├── scarry.hb ├── shipyard.mqo ├── shipyard_door.mot ├── shipyard_door2.mot ├── solarpanel.png ├── spacecarrier.mqo ├── steel.png ├── steelface.jpg ├── stripes.png ├── turretg1.mqo ├── turretz1.mqo ├── wirebit.mqo ├── wiredestroyer.mqo └── worker-cockpit.png ├── mods ├── surface │ ├── A10.cpp │ ├── A10.h │ ├── Aerial.cpp │ ├── Aerial.h │ ├── Airport.cpp │ ├── Airport.h │ ├── Apache.cpp │ ├── Apache.h │ ├── DrawMap.cpp │ ├── F15.cpp │ ├── F15.h │ ├── HeightMap.cpp │ ├── Launcher.cpp │ ├── Launcher.h │ ├── SurfaceBuilding.cpp │ ├── SurfaceBuilding.h │ ├── SurfaceCS.cpp │ ├── SurfaceCS.h │ ├── TIN.cpp │ ├── TIN.h │ ├── Tank.cpp │ ├── Tank.h │ ├── VC2015 │ │ ├── surface.vcxproj │ │ └── surface.vcxproj.filters │ ├── WarMap.cpp │ ├── WarMap.h │ ├── __init.nut │ ├── __initClient.nut │ ├── common.nut │ ├── draw │ │ ├── A10-draw.cpp │ │ ├── Aerial-draw.cpp │ │ ├── Airport-draw.cpp │ │ ├── Apache-draw.cpp │ │ ├── F15-draw.cpp │ │ ├── Launcher-draw.cpp │ │ ├── SurfaceBuilding-draw.cpp │ │ └── Tank-draw.cpp │ ├── drawmap.h │ ├── mas.cpp │ ├── models │ │ ├── A10-LOD.mot │ │ ├── A10-airbrake.mot │ │ ├── A10-cockpit.mqo │ │ ├── A10.mqo │ │ ├── A10.nut │ │ ├── APFSDS.mqo │ │ ├── Aerial.nut │ │ ├── Apache.nut │ │ ├── F15-LOD.mot │ │ ├── F15-aileron.mot │ │ ├── F15-cockpit.mqo │ │ ├── F15-elevator.mot │ │ ├── F15-gear.mot │ │ ├── F15-rudder.mot │ │ ├── F15.mqo │ │ ├── F15.nut │ │ ├── Hellfire-proc.nut │ │ ├── Hellfire.nut │ │ ├── HydraRocket.nut │ │ ├── LandVehicle.nut │ │ ├── aerialLanding.nut │ │ ├── aim9.mqo │ │ ├── airport-wall.png │ │ ├── airport-wall.svg │ │ ├── airport.mqo │ │ ├── airport.nut │ │ ├── airport.png │ │ ├── airport.svg │ │ ├── apache-gunpitch.mot │ │ ├── apache-gunyaw.mot │ │ ├── apache-rotor.mot │ │ ├── apache-tailrotor.mot │ │ ├── apache.mqo │ │ ├── apache_int.mqo │ │ ├── bigsight.mqo │ │ ├── camo.png │ │ ├── hellfire.mqo │ │ ├── hydra.mqo │ │ ├── hydralauncher.mqo │ │ ├── hydralauncher.png │ │ ├── hydralauncher.svg │ │ ├── m3truck-handle.mot │ │ ├── m3truck-steer.mot │ │ ├── m3truck-turretpitch.mot │ │ ├── m3truck-turretyaw.mot │ │ ├── m3truck.mqo │ │ ├── m3truck.nut │ │ ├── m3truck1.mqo │ │ ├── m3truck1_cockpit.mqo │ │ ├── type90-barrelpitch.mot │ │ ├── type90-turretyaw.mot │ │ ├── type90.mqo │ │ └── type90.nut │ ├── scripts │ │ ├── ceres.nut │ │ ├── demo.nut │ │ ├── mars.nut │ │ └── moon.nut │ └── sound │ │ ├── A10-gunshot.ogg │ │ ├── apache-gunshot.ogg │ │ ├── apache-rotor.ogg │ │ ├── copyright.txt │ │ └── tank-gun.wav └── vastspace │ ├── Attacker.cpp │ ├── Attacker.h │ ├── Battleship.cpp │ ├── Battleship.h │ ├── ContainerHead.cpp │ ├── ContainerHead.h │ ├── GNUmakefile │ ├── GimbalTurret.cpp │ ├── GimbalTurret.h │ ├── Soldier.cpp │ ├── Soldier.h │ ├── SpacePlane.cpp │ ├── SpacePlane.h │ ├── TorusStation.cpp │ ├── TorusStation.h │ ├── VC2015 │ ├── vastspace.vcxproj │ └── vastspace.vcxproj.filters │ ├── __init.nut │ ├── __initClient.nut │ ├── common.nut │ ├── draw │ ├── Attacker-Draw.cpp │ ├── Battleship-draw.cpp │ ├── ContainerHead-draw.cpp │ ├── GimbalTurret-draw.cpp │ ├── Soldier-draw.cpp │ ├── SpacePlane-draw.cpp │ └── TorusStation-draw.cpp │ ├── island3.cpp │ ├── island3.h │ ├── models │ ├── Attacker.nut │ ├── Battleship.nut │ ├── ContainerHead.nut │ ├── Firearm.nut │ ├── GimbalTurret.mqo │ ├── GimbalTurret.nut │ ├── GimbalTurret_Barrel.png │ ├── GimbalTurret_Gear.png │ ├── GimbalTurret_MissilePod.png │ ├── GimbalTurret_Wheel.png │ ├── GimbalTurret_rotx.mot │ ├── GimbalTurret_roty.mot │ ├── M16.nut │ ├── M40.nut │ ├── MissileGimbalTurret.mqo │ ├── Soldier-free.png │ ├── Soldier-free.svg │ ├── Soldier-stand.png │ ├── Soldier-stand.svg │ ├── Soldier.mqo │ ├── Soldier.nut │ ├── Soldier.png │ ├── Soldier_aim.mot │ ├── Soldier_reload.mot │ ├── Soldier_swapweapon.mot │ ├── SpacePlane.nut │ ├── TorusStation.mqo │ ├── TorusStation.nut │ ├── TorusStationJoint.png │ ├── TorusStation_Hub.mqo │ ├── TorusStation_HubEnd.mqo │ ├── TorusStation_Joint.mqo │ ├── TorusStation_Spoke.mqo │ ├── attacker.mqo │ ├── battleship.mqo │ ├── container_connect.bmp │ ├── containerhead.mqo │ ├── containerrail.bmp │ ├── engine2.bmp │ ├── engine2br.bmp │ ├── gascontainer.mqo │ ├── gunmodel.png │ ├── gunmodel.svg │ ├── hexcontainer.mqo │ ├── hook.mqo │ ├── island3dock.mqo │ ├── m16.mqo │ ├── m40.mqo │ ├── round.png │ ├── round.svg │ ├── sniperriflemodel.png │ ├── sniperriflemodel.svg │ ├── spaceplane.bmp │ ├── spaceplane.mqo │ ├── spaceplane_br.bmp │ └── tether.jpg │ ├── scripts │ ├── demo1.nut │ ├── demo2.nut │ └── demo_attacker.nut │ ├── sound │ ├── m16-1.ogg │ ├── m16-2.ogg │ ├── m16-3.ogg │ ├── sniper-1.ogg │ └── sniper-2.ogg │ └── vastspace.h ├── motioner ├── MetasequoiaScripts │ ├── mirror_copy_tree.py │ └── rotatey_copy_tree.py ├── VC2012 │ ├── motioner.sln │ ├── motioner.vcxproj │ └── motioner.vcxproj.filters ├── antiglut.h ├── export.h ├── motion.mot ├── motioner.cpp ├── motioner.sln ├── motioner.vcproj ├── wtltest │ ├── AboutDlg.h │ ├── MainDlg.h │ ├── PreviewDlg.h │ ├── VC2012 │ │ ├── wtltest.sln │ │ ├── wtltest.vcxproj │ │ └── wtltest.vcxproj.filters │ ├── res │ │ └── wtltest.ico │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── wtltest.cpp │ ├── wtltest.h │ ├── wtltest.rc │ ├── wtltest.sln │ └── wtltest.vcproj ├── ysdnmmot.cpp ├── ysdnmmot.h ├── yssurf.cpp ├── yssurf.h └── yssurfdraw.c ├── scripts ├── Builder.nut ├── alphacen.nut ├── common.nut ├── demo1.nut ├── demo2.nut ├── demo3.nut ├── demo4.nut ├── demo5.nut ├── eternalFight.nut ├── init.nut ├── initClient.nut ├── items.nut ├── materials.nut ├── roll.nut ├── tutorial1.nut ├── tutorial2.nut └── tutorial3.nut ├── setup ├── README.txt ├── vssetup.sln ├── vssetup.vdproj └── vssetup64 │ └── vssetup64.vdproj ├── shaders ├── additive.fs ├── additive.vs ├── additiveShadowmap.fs ├── additiveShadowmap.vs ├── atmosphere.fs ├── atmosphere.vs ├── bump.fs ├── bump.vs ├── corona.fs ├── corona.vs ├── earth.fs ├── earth.vs ├── earth_cloud.fs ├── earth_cloud.vs ├── earth_cloud_noise.fs ├── flatplanet.fs ├── flatplanet.vs ├── mirror.fs ├── mirror.vs ├── moon.fs ├── moon.vs ├── normalShadowmap.fs ├── normalShadowmap.vs ├── ringshadow.fs ├── ringshadow.vs ├── ringsphereshadow.fs ├── ringsphereshadow.vs ├── shadowmap.fs ├── shadowmap.vs ├── shadowmapForHeightmap.fs ├── shadowmapForHeightmap.vs ├── terrainplanet.fs ├── terrainplanet.vs └── tonemap.fs ├── sound ├── aagun.wav ├── airrip-h.ogg └── airrip.ogg ├── sqscripter ├── README.md ├── VC2012 │ ├── sqscripter-test │ │ ├── sqscripter-test.cpp │ │ ├── sqscripter-test.vcxproj │ │ └── sqscripter-test.vcxproj.filters │ └── sqscripter.sln ├── VC2015 │ └── sqscripter-wx │ │ └── sqscripter-wx.vcxproj ├── clear.png ├── media │ └── sqscripter.png ├── new.png ├── open.png ├── resource.h ├── run.png ├── save.png ├── saveas.png ├── scripts │ └── mixin.nut ├── sqscripter-wx.cpp ├── sqscripter.cpp ├── sqscripter.h ├── sqscripter.rc └── wx │ ├── .gitattributes │ ├── .github │ └── CONTRIBUTING.md │ ├── .gitignore │ ├── .travis.yml │ ├── BuildGit.txt │ ├── Makefile.in │ ├── README.md │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── appveyor.yml │ ├── art │ ├── addbookm.xpm │ ├── back.xpm │ ├── cdrom.xpm │ ├── close.xpm │ ├── copy.xpm │ ├── cross.xpm │ ├── cut.xpm │ ├── deffile.xpm │ ├── delbookm.xpm │ ├── delete.xpm │ ├── dir_up.xpm │ ├── down.xpm │ ├── edit.xpm │ ├── exefile.xpm │ ├── fileopen.xpm │ ├── filesave.xpm │ ├── filesaveas.xpm │ ├── find.xpm │ ├── findrepl.xpm │ ├── first.xpm │ ├── floppy.xpm │ ├── folder.xpm │ ├── folder_open.xpm │ ├── forward.xpm │ ├── fullscreen.xpm │ ├── gtk │ │ ├── error.xpm │ │ ├── info.xpm │ │ ├── question.xpm │ │ └── warning.xpm │ ├── harddisk.xpm │ ├── helpicon.xpm │ ├── home.xpm │ ├── htmbook.xpm │ ├── htmfoldr.xpm │ ├── htmoptns.xpm │ ├── htmpage.xpm │ ├── htmsidep.xpm │ ├── last.xpm │ ├── listview.xpm │ ├── minus.xpm │ ├── missimg.xpm │ ├── motif │ │ ├── error.xpm │ │ ├── info.xpm │ │ ├── question.xpm │ │ └── warning.xpm │ ├── new.xpm │ ├── new_dir.xpm │ ├── paste.xpm │ ├── plus.xpm │ ├── print.xpm │ ├── quit.xpm │ ├── redo.xpm │ ├── removable.xpm │ ├── repview.xpm │ ├── tango │ │ ├── application_x_executable.h │ │ ├── dialog_error.h │ │ ├── dialog_information.h │ │ ├── dialog_warning.h │ │ ├── document_new.h │ │ ├── document_open.h │ │ ├── document_print.h │ │ ├── document_save.h │ │ ├── document_save_as.h │ │ ├── drive_harddisk.h │ │ ├── drive_optical.h │ │ ├── drive_removable_media.h │ │ ├── edit_copy.h │ │ ├── edit_cut.h │ │ ├── edit_delete.h │ │ ├── edit_find.h │ │ ├── edit_find_replace.h │ │ ├── edit_paste.h │ │ ├── edit_redo.h │ │ ├── edit_undo.h │ │ ├── folder.h │ │ ├── folder_new.h │ │ ├── folder_open.h │ │ ├── fullscreen.h │ │ ├── go_down.h │ │ ├── go_first.h │ │ ├── go_home.h │ │ ├── go_last.h │ │ ├── go_next.h │ │ ├── go_previous.h │ │ ├── go_up.h │ │ ├── image_missing.h │ │ ├── list_add.h │ │ ├── list_remove.h │ │ └── text_x_generic.h │ ├── tick.xpm │ ├── tipicon.xpm │ ├── toparent.xpm │ ├── undo.xpm │ ├── up.xpm │ ├── wxwin.ico │ ├── wxwin16x16.png │ ├── wxwin16x16.xpm │ ├── wxwin32x32.png │ └── wxwin32x32.xpm │ ├── autoconf_inc.m4 │ ├── autogen.sh │ ├── build │ ├── README.txt │ ├── aclocal │ │ ├── ac_raf_func_which_getservbyname_r.m4 │ │ ├── atomic_builtins.m4 │ │ ├── ax_cflags_gcc_option.m4 │ │ ├── ax_cxx_compile_stdcxx.m4 │ │ ├── ax_func_which_gethostbyname_r.m4 │ │ ├── ax_gcc_option.m4 │ │ ├── ax_gxx_version.m4 │ │ ├── bakefile-lang.m4 │ │ ├── bakefile.m4 │ │ ├── cppunit.m4 │ │ ├── gst-element-check.m4 │ │ ├── gtk-2.0.m4 │ │ ├── gtk-3.0.m4 │ │ ├── gtk.m4 │ │ ├── pkg.m4 │ │ ├── sdl.m4 │ │ └── visibility.m4 │ ├── autoconf_prepend-include │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoconf │ │ │ ├── c.m4 │ │ │ ├── functions.m4 │ │ │ ├── general.m4 │ │ │ ├── libs.m4 │ │ │ └── status.m4 │ ├── autogen.mk │ ├── bakefiles │ │ ├── Bakefiles.bkgen │ │ ├── README │ │ ├── build_cfg.bkl │ │ ├── common.bkl │ │ ├── common_samples.bkl │ │ ├── common_samples_intree.bkl │ │ ├── common_samples_outoftree.bkl │ │ ├── config.bkl │ │ ├── expat.bkl │ │ ├── files.bkl │ │ ├── jpeg.bkl │ │ ├── mac_bundles.bkl │ │ ├── make_dist.mk │ │ ├── monolithic.bkl │ │ ├── multilib.bkl │ │ ├── opengl.bkl │ │ ├── plugins.bkl │ │ ├── plugins_deps.bkl │ │ ├── png.bkl │ │ ├── regex.bkl │ │ ├── scintilla.bkl │ │ ├── tiff.bkl │ │ ├── version.bkl │ │ ├── wx.bkl │ │ ├── wxpresets │ │ │ ├── bakefile_quickstart.txt │ │ │ ├── libsample │ │ │ │ ├── configure.in │ │ │ │ ├── libsample.bkl │ │ │ │ └── libsample.cpp │ │ │ ├── presets │ │ │ │ ├── wx.bkl │ │ │ │ ├── wx_presets.py │ │ │ │ ├── wx_unix.bkl │ │ │ │ ├── wx_win32.bkl │ │ │ │ └── wx_xrc.bkl │ │ │ └── sample │ │ │ │ ├── configure.in │ │ │ │ ├── minimal.bkl │ │ │ │ └── minimal.cpp │ │ ├── wxwin.py │ │ └── zlib.bkl │ ├── buildbot │ │ ├── config │ │ │ ├── StellarWerx32.xml │ │ │ ├── StellarWerx64.xml │ │ │ ├── TBITCWXBUILDBOT.xml │ │ │ ├── brandt32.xml │ │ │ ├── brandt64.xml │ │ │ ├── common.xml │ │ │ ├── csleobuild.xml │ │ │ ├── example.xml │ │ │ ├── include │ │ │ │ ├── csleobuild.xml │ │ │ │ ├── defs.xml │ │ │ │ ├── push.xml │ │ │ │ ├── unix.xml │ │ │ │ ├── wx-devs.xml │ │ │ │ └── xp_vc.xml │ │ │ ├── push.xml │ │ │ ├── ravnsgaard.xml │ │ │ └── xp_vc.xml │ │ └── tools │ │ │ ├── bot.xsd │ │ │ ├── check.sh │ │ │ ├── email.xsl │ │ │ └── embedded.xsl │ ├── files │ ├── msw │ │ ├── config.bcc │ │ ├── config.gcc │ │ ├── config.vc │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.vc │ │ ├── wx_adv.vcxproj │ │ ├── wx_adv.vcxproj.filters │ │ ├── wx_aui.vcxproj │ │ ├── wx_aui.vcxproj.filters │ │ ├── wx_base.vcxproj │ │ ├── wx_base.vcxproj.filters │ │ ├── wx_config.props │ │ ├── wx_core.vcxproj │ │ ├── wx_core.vcxproj.filters │ │ ├── wx_custom_build.vcxproj │ │ ├── wx_custom_build.vcxproj.filters │ │ ├── wx_gl.vcxproj │ │ ├── wx_gl.vcxproj.filters │ │ ├── wx_html.vcxproj │ │ ├── wx_html.vcxproj.filters │ │ ├── wx_media.vcxproj │ │ ├── wx_media.vcxproj.filters │ │ ├── wx_net.vcxproj │ │ ├── wx_net.vcxproj.filters │ │ ├── wx_propgrid.vcxproj │ │ ├── wx_propgrid.vcxproj.filters │ │ ├── wx_qa.vcxproj │ │ ├── wx_qa.vcxproj.filters │ │ ├── wx_ribbon.vcxproj │ │ ├── wx_ribbon.vcxproj.filters │ │ ├── wx_richtext.vcxproj │ │ ├── wx_richtext.vcxproj.filters │ │ ├── wx_setup.props │ │ ├── wx_stc.vcxproj │ │ ├── wx_stc.vcxproj.filters │ │ ├── wx_vc10.sln │ │ ├── wx_vc11.sln │ │ ├── wx_vc12.sln │ │ ├── wx_vc14.sln │ │ ├── wx_vc7.sln │ │ ├── wx_vc7_adv.vcproj │ │ ├── wx_vc7_aui.vcproj │ │ ├── wx_vc7_base.vcproj │ │ ├── wx_vc7_core.vcproj │ │ ├── wx_vc7_gl.vcproj │ │ ├── wx_vc7_html.vcproj │ │ ├── wx_vc7_media.vcproj │ │ ├── wx_vc7_net.vcproj │ │ ├── wx_vc7_propgrid.vcproj │ │ ├── wx_vc7_qa.vcproj │ │ ├── wx_vc7_ribbon.vcproj │ │ ├── wx_vc7_richtext.vcproj │ │ ├── wx_vc7_stc.vcproj │ │ ├── wx_vc7_webview.vcproj │ │ ├── wx_vc7_wxexpat.vcproj │ │ ├── wx_vc7_wxjpeg.vcproj │ │ ├── wx_vc7_wxpng.vcproj │ │ ├── wx_vc7_wxregex.vcproj │ │ ├── wx_vc7_wxscintilla.vcproj │ │ ├── wx_vc7_wxtiff.vcproj │ │ ├── wx_vc7_wxzlib.vcproj │ │ ├── wx_vc7_xml.vcproj │ │ ├── wx_vc7_xrc.vcproj │ │ ├── wx_vc8.sln │ │ ├── wx_vc8_adv.vcproj │ │ ├── wx_vc8_aui.vcproj │ │ ├── wx_vc8_base.vcproj │ │ ├── wx_vc8_core.vcproj │ │ ├── wx_vc8_gl.vcproj │ │ ├── wx_vc8_html.vcproj │ │ ├── wx_vc8_media.vcproj │ │ ├── wx_vc8_net.vcproj │ │ ├── wx_vc8_propgrid.vcproj │ │ ├── wx_vc8_qa.vcproj │ │ ├── wx_vc8_ribbon.vcproj │ │ ├── wx_vc8_richtext.vcproj │ │ ├── wx_vc8_stc.vcproj │ │ ├── wx_vc8_webview.vcproj │ │ ├── wx_vc8_wxexpat.vcproj │ │ ├── wx_vc8_wxjpeg.vcproj │ │ ├── wx_vc8_wxpng.vcproj │ │ ├── wx_vc8_wxregex.vcproj │ │ ├── wx_vc8_wxscintilla.vcproj │ │ ├── wx_vc8_wxtiff.vcproj │ │ ├── wx_vc8_wxzlib.vcproj │ │ ├── wx_vc8_xml.vcproj │ │ ├── wx_vc8_xrc.vcproj │ │ ├── wx_vc9.sln │ │ ├── wx_vc9_adv.vcproj │ │ ├── wx_vc9_aui.vcproj │ │ ├── wx_vc9_base.vcproj │ │ ├── wx_vc9_core.vcproj │ │ ├── wx_vc9_gl.vcproj │ │ ├── wx_vc9_html.vcproj │ │ ├── wx_vc9_media.vcproj │ │ ├── wx_vc9_net.vcproj │ │ ├── wx_vc9_propgrid.vcproj │ │ ├── wx_vc9_qa.vcproj │ │ ├── wx_vc9_ribbon.vcproj │ │ ├── wx_vc9_richtext.vcproj │ │ ├── wx_vc9_stc.vcproj │ │ ├── wx_vc9_webview.vcproj │ │ ├── wx_vc9_wxexpat.vcproj │ │ ├── wx_vc9_wxjpeg.vcproj │ │ ├── wx_vc9_wxpng.vcproj │ │ ├── wx_vc9_wxregex.vcproj │ │ ├── wx_vc9_wxscintilla.vcproj │ │ ├── wx_vc9_wxtiff.vcproj │ │ ├── wx_vc9_wxzlib.vcproj │ │ ├── wx_vc9_xml.vcproj │ │ ├── wx_vc9_xrc.vcproj │ │ ├── wx_webview.vcxproj │ │ ├── wx_webview.vcxproj.filters │ │ ├── wx_wxexpat.vcxproj │ │ ├── wx_wxexpat.vcxproj.filters │ │ ├── wx_wxjpeg.vcxproj │ │ ├── wx_wxjpeg.vcxproj.filters │ │ ├── wx_wxpng.vcxproj │ │ ├── wx_wxpng.vcxproj.filters │ │ ├── wx_wxregex.vcxproj │ │ ├── wx_wxregex.vcxproj.filters │ │ ├── wx_wxscintilla.vcxproj │ │ ├── wx_wxscintilla.vcxproj.filters │ │ ├── wx_wxtiff.vcxproj │ │ ├── wx_wxtiff.vcxproj.filters │ │ ├── wx_wxzlib.vcxproj │ │ ├── wx_wxzlib.vcxproj.filters │ │ ├── wx_xml.vcxproj │ │ ├── wx_xml.vcxproj.filters │ │ ├── wx_xrc.vcxproj │ │ └── wx_xrc.vcxproj.filters │ ├── osx │ │ ├── fix_xcode_ids.py │ │ ├── makeprojects.applescript │ │ ├── readme.txt │ │ ├── wx.xcconfig │ │ ├── wxcocoa.xcconfig │ │ ├── wxcocoa.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── dynamic.xcscheme │ │ │ │ └── static.xcscheme │ │ ├── wxcocoa_in.xcodeproj │ │ │ └── project.pbxproj │ │ ├── wxcocoa_ml.xcconfig │ │ ├── wxcocoa_ml3rd.xcconfig │ │ ├── wxcocoa_mlbase.xcconfig │ │ ├── wxcocoa_mlgui.xcconfig │ │ ├── wxdebug.xcconfig │ │ ├── wxiphone.xcconfig │ │ ├── wxiphone.xcodeproj │ │ │ └── project.pbxproj │ │ ├── wxiphone_in.xcodeproj │ │ │ └── project.pbxproj │ │ ├── wxrelease.xcconfig │ │ └── wxvers.xcconfig │ ├── tools │ │ ├── appveyor.bat │ │ ├── before_install.sh │ │ ├── build-wxwidgets.py │ │ ├── builder.py │ │ ├── msvs │ │ │ ├── build2005.bat │ │ │ ├── build2008.bat │ │ │ ├── build2010.bat │ │ │ ├── build2012.bat │ │ │ ├── build2013.bat │ │ │ └── package.bat │ │ ├── release.bat │ │ ├── release.sh │ │ └── wxwidgets.iss │ ├── update-setup-h │ ├── upmake │ └── upmake_script.pl │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── demos │ ├── Makefile.in │ ├── bombs │ │ ├── Makefile.in │ │ ├── bombs.bkl │ │ ├── bombs.cpp │ │ ├── bombs.h │ │ ├── bombs.ico │ │ ├── bombs.rc │ │ ├── bombs.xpm │ │ ├── bombs1.cpp │ │ ├── bombs_vc7.vcproj │ │ ├── bombs_vc8.vcproj │ │ ├── bombs_vc9.vcproj │ │ ├── descrip.mms │ │ ├── game.cpp │ │ ├── game.h │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ └── readme.txt │ ├── demos.bkl │ ├── forty │ │ ├── Makefile.in │ │ ├── about.htm │ │ ├── canvas.cpp │ │ ├── canvas.h │ │ ├── card.cpp │ │ ├── card.h │ │ ├── cards.ico │ │ ├── descrip.mms │ │ ├── forty-icons.r │ │ ├── forty.bkl │ │ ├── forty.cpp │ │ ├── forty.h │ │ ├── forty.r │ │ ├── forty.rc │ │ ├── forty.xpm │ │ ├── forty_vc7.vcproj │ │ ├── forty_vc8.vcproj │ │ ├── forty_vc9.vcproj │ │ ├── game.cpp │ │ ├── game.h │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── pictures.xpm │ │ ├── pile.cpp │ │ ├── pile.h │ │ ├── playerdg.cpp │ │ ├── playerdg.h │ │ ├── readme.txt │ │ ├── scoredg.cpp │ │ ├── scoredg.h │ │ ├── scorefil.cpp │ │ ├── scorefil.h │ │ └── symbols.xpm │ ├── fractal │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── fractal.bkl │ │ ├── fractal.cpp │ │ ├── fractal.rc │ │ ├── fractal_vc7.vcproj │ │ ├── fractal_vc8.vcproj │ │ ├── fractal_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ └── mondrian.ico │ ├── life │ │ ├── Makefile.in │ │ ├── bitmaps │ │ │ ├── center.bmp │ │ │ ├── center.xpm │ │ │ ├── east.bmp │ │ │ ├── east.xpm │ │ │ ├── info.bmp │ │ │ ├── info.xpm │ │ │ ├── life.bmp │ │ │ ├── life.xpm │ │ │ ├── north.bmp │ │ │ ├── north.xpm │ │ │ ├── open.bmp │ │ │ ├── open.xpm │ │ │ ├── play.bmp │ │ │ ├── play.xpm │ │ │ ├── reset.bmp │ │ │ ├── reset.xpm │ │ │ ├── south.bmp │ │ │ ├── south.xpm │ │ │ ├── stop.bmp │ │ │ ├── stop.xpm │ │ │ ├── west.bmp │ │ │ ├── west.xpm │ │ │ ├── zoomin.bmp │ │ │ ├── zoomin.xpm │ │ │ ├── zoomout.bmp │ │ │ └── zoomout.xpm │ │ ├── breeder.lif │ │ ├── descrip.mms │ │ ├── dialogs.cpp │ │ ├── dialogs.h │ │ ├── game.cpp │ │ ├── game.h │ │ ├── life.bkl │ │ ├── life.cpp │ │ ├── life.h │ │ ├── life.rc │ │ ├── life_vc7.vcproj │ │ ├── life_vc8.vcproj │ │ ├── life_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── mondrian.ico │ │ ├── mondrian.xpm │ │ ├── reader.cpp │ │ ├── reader.h │ │ └── samples.inc │ ├── makefile.bcc │ ├── makefile.gcc │ ├── makefile.vc │ └── poem │ │ ├── Makefile.in │ │ ├── corner1.ico │ │ ├── corner1.xpm │ │ ├── corner2.ico │ │ ├── corner2.xpm │ │ ├── corner3.ico │ │ ├── corner3.xpm │ │ ├── corner4.ico │ │ ├── corner4.xpm │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── poem.bkl │ │ ├── poem_vc7.vcproj │ │ ├── poem_vc8.vcproj │ │ ├── poem_vc9.vcproj │ │ ├── wxpoem.cpp │ │ ├── wxpoem.dat │ │ ├── wxpoem.h │ │ ├── wxpoem.ico │ │ ├── wxpoem.idx │ │ ├── wxpoem.rc │ │ ├── wxpoem.txt │ │ └── wxpoem.xpm │ ├── descrip.mms │ ├── distrib │ ├── autopackage │ │ ├── Readme.txt │ │ ├── makeautopackage │ │ ├── sample │ │ │ ├── README │ │ │ ├── autopackage │ │ │ │ └── default.apspec │ │ │ ├── minimal.bkl │ │ │ └── minimal.cpp │ │ └── wxgtk.apspec.in │ └── mac │ │ └── pbsetup-sh │ ├── docs │ ├── base │ │ └── readme.txt │ ├── changes.txt │ ├── changes_30.txt │ ├── contributing │ │ ├── about-platform-toolkit-and-library-names.md │ │ ├── about-version-numbers.md │ │ ├── binary-compatibility.md │ │ ├── how-to-add-class-documentation.md │ │ ├── how-to-add-files-to-build-system.md │ │ ├── how-to-add-new-font-encoding.md │ │ ├── how-to-add-new-sample.md │ │ ├── how-to-add-new-ui-bitmaps.md │ │ ├── how-to-add-new-wxUSE_XXX.md │ │ ├── how-to-add-new-xrc-handler.md │ │ ├── how-to-release.md │ │ ├── how-to-update-third-party-library.md │ │ ├── how-to-write-unit-tests.md │ │ ├── translators-guide.md │ │ └── wxmsw-contributor-guide.md │ ├── dfb │ │ └── install.txt │ ├── doxygen │ │ ├── Doxyfile │ │ ├── DoxygenLayout.xml │ │ ├── custom_footer.html │ │ ├── custom_header.html │ │ ├── extra_stylesheet.css │ │ ├── groups │ │ │ ├── class.h │ │ │ ├── class_appmanagement.h │ │ │ ├── class_archive.h │ │ │ ├── class_aui.h │ │ │ ├── class_bookctrl.h │ │ │ ├── class_cfg.h │ │ │ ├── class_cmndlg.h │ │ │ ├── class_containers.h │ │ │ ├── class_conv.h │ │ │ ├── class_ctrl.h │ │ │ ├── class_data.h │ │ │ ├── class_dc.h │ │ │ ├── class_debugging.h │ │ │ ├── class_dnd.h │ │ │ ├── class_docview.h │ │ │ ├── class_dvc.h │ │ │ ├── class_events.h │ │ │ ├── class_file.h │ │ │ ├── class_gdi.h │ │ │ ├── class_gl.h │ │ │ ├── class_grid.h │ │ │ ├── class_help.h │ │ │ ├── class_html.h │ │ │ ├── class_ipc.h │ │ │ ├── class_logging.h │ │ │ ├── class_managedwnd.h │ │ │ ├── class_media.h │ │ │ ├── class_menus.h │ │ │ ├── class_misc.h │ │ │ ├── class_miscwnd.h │ │ │ ├── class_net.h │ │ │ ├── class_pickers.h │ │ │ ├── class_printing.h │ │ │ ├── class_propgrid.h │ │ │ ├── class_ribbon.h │ │ │ ├── class_richtext.h │ │ │ ├── class_rtti.h │ │ │ ├── class_smartpointers.h │ │ │ ├── class_stc.h │ │ │ ├── class_streams.h │ │ │ ├── class_threading.h │ │ │ ├── class_validator.h │ │ │ ├── class_vfs.h │ │ │ ├── class_webview.h │ │ │ ├── class_winlayout.h │ │ │ ├── class_xml.h │ │ │ ├── class_xrc.h │ │ │ ├── funcmacro.h │ │ │ ├── funcmacro_appinitterm.h │ │ │ ├── funcmacro_atomic.h │ │ │ ├── funcmacro_byteorder.h │ │ │ ├── funcmacro_crt.h │ │ │ ├── funcmacro_debug.h │ │ │ ├── funcmacro_dialog.h │ │ │ ├── funcmacro_env.h │ │ │ ├── funcmacro_events.h │ │ │ ├── funcmacro_file.h │ │ │ ├── funcmacro_gdi.h │ │ │ ├── funcmacro_locale.h │ │ │ ├── funcmacro_log.h │ │ │ ├── funcmacro_math.h │ │ │ ├── funcmacro_misc.h │ │ │ ├── funcmacro_networkuseros.h │ │ │ ├── funcmacro_procctrl.h │ │ │ ├── funcmacro_rtti.h │ │ │ ├── funcmacro_string.h │ │ │ ├── funcmacro_thread.h │ │ │ ├── funcmacro_time.h │ │ │ └── funcmacro_version.h │ │ ├── images │ │ │ ├── appear-activityindicator-gtk.png │ │ │ ├── appear-activityindicator-mac.png │ │ │ ├── appear-activityindicator-msw.png │ │ │ ├── appear-animationctrl-gtk.png │ │ │ ├── appear-animationctrl-mac.png │ │ │ ├── appear-animationctrl-msw.png │ │ │ ├── appear-bitmapbutton-gtk.png │ │ │ ├── appear-bitmapbutton-mac.png │ │ │ ├── appear-bitmapbutton-msw.png │ │ │ ├── appear-bitmapcombobox-gtk.png │ │ │ ├── appear-bitmapcombobox-mac.png │ │ │ ├── appear-bitmapcombobox-msw.png │ │ │ ├── appear-button-gtk.png │ │ │ ├── appear-button-mac.png │ │ │ ├── appear-button-msw.png │ │ │ ├── appear-calendarctrl-gtk.png │ │ │ ├── appear-calendarctrl-mac.png │ │ │ ├── appear-calendarctrl-msw.png │ │ │ ├── appear-checkbox-gtk.png │ │ │ ├── appear-checkbox-mac.png │ │ │ ├── appear-checkbox-msw.png │ │ │ ├── appear-checklistbox-gtk.png │ │ │ ├── appear-checklistbox-mac.png │ │ │ ├── appear-checklistbox-msw.png │ │ │ ├── appear-choice-gtk.png │ │ │ ├── appear-choice-mac.png │ │ │ ├── appear-choice-msw.png │ │ │ ├── appear-choicebook-gtk.png │ │ │ ├── appear-choicebook-mac.png │ │ │ ├── appear-choicebook-msw.png │ │ │ ├── appear-collapsiblepane-gtk.png │ │ │ ├── appear-collapsiblepane-mac.png │ │ │ ├── appear-collapsiblepane-msw.png │ │ │ ├── appear-colourpickerctrl-gtk.png │ │ │ ├── appear-colourpickerctrl-mac.png │ │ │ ├── appear-colourpickerctrl-msw.png │ │ │ ├── appear-combobox-gtk.png │ │ │ ├── appear-combobox-mac.png │ │ │ ├── appear-combobox-msw.png │ │ │ ├── appear-comboctrl-gtk.png │ │ │ ├── appear-comboctrl-mac.png │ │ │ ├── appear-comboctrl-msw.png │ │ │ ├── appear-commandlinkbutton-gtk.png │ │ │ ├── appear-commandlinkbutton-mac.png │ │ │ ├── appear-commandlinkbutton-msw.png │ │ │ ├── appear-dataviewctrl-gtk.png │ │ │ ├── appear-dataviewctrl-mac.png │ │ │ ├── appear-dataviewctrl-msw.png │ │ │ ├── appear-dataviewtreectrl-gtk.png │ │ │ ├── appear-dataviewtreectrl-mac.png │ │ │ ├── appear-dataviewtreectrl-msw.png │ │ │ ├── appear-datepickerctrl-gtk.png │ │ │ ├── appear-datepickerctrl-mac.png │ │ │ ├── appear-datepickerctrl-msw.png │ │ │ ├── appear-dirpickerctrl-gtk.png │ │ │ ├── appear-dirpickerctrl-mac.png │ │ │ ├── appear-dirpickerctrl-msw.png │ │ │ ├── appear-filectrl-gtk.png │ │ │ ├── appear-filectrl-mac.png │ │ │ ├── appear-filectrl-msw.png │ │ │ ├── appear-filepickerctrl-gtk.png │ │ │ ├── appear-filepickerctrl-mac.png │ │ │ ├── appear-filepickerctrl-msw.png │ │ │ ├── appear-fontpickerctrl-gtk.png │ │ │ ├── appear-fontpickerctrl-mac.png │ │ │ ├── appear-fontpickerctrl-msw.png │ │ │ ├── appear-gauge-gtk.png │ │ │ ├── appear-gauge-mac.png │ │ │ ├── appear-gauge-msw.png │ │ │ ├── appear-genericdirctrl-gtk.png │ │ │ ├── appear-genericdirctrl-mac.png │ │ │ ├── appear-genericdirctrl-msw.png │ │ │ ├── appear-hyperlinkctrl-gtk.png │ │ │ ├── appear-hyperlinkctrl-mac.png │ │ │ ├── appear-hyperlinkctrl-msw.png │ │ │ ├── appear-listbook-gtk.png │ │ │ ├── appear-listbook-mac.png │ │ │ ├── appear-listbook-msw.png │ │ │ ├── appear-listbox-gtk.png │ │ │ ├── appear-listbox-mac.png │ │ │ ├── appear-listbox-msw.png │ │ │ ├── appear-listctrl-gtk.png │ │ │ ├── appear-listctrl-mac.png │ │ │ ├── appear-listctrl-msw.png │ │ │ ├── appear-notebook-gtk.png │ │ │ ├── appear-notebook-mac.png │ │ │ ├── appear-notebook-msw.png │ │ │ ├── appear-ownerdrawncombobox-gtk.png │ │ │ ├── appear-ownerdrawncombobox-mac.png │ │ │ ├── appear-ownerdrawncombobox-msw.png │ │ │ ├── appear-propertygrid-gtk.png │ │ │ ├── appear-propertygrid-mac.png │ │ │ ├── appear-propertygrid-msw.png │ │ │ ├── appear-radiobox-gtk.png │ │ │ ├── appear-radiobox-mac.png │ │ │ ├── appear-radiobox-msw.png │ │ │ ├── appear-radiobutton-gtk.png │ │ │ ├── appear-radiobutton-mac.png │ │ │ ├── appear-radiobutton-msw.png │ │ │ ├── appear-richtextctrl-gtk.png │ │ │ ├── appear-richtextctrl-mac.png │ │ │ ├── appear-richtextctrl-msw.png │ │ │ ├── appear-richtooltip-gtk.png │ │ │ ├── appear-richtooltip-mac.png │ │ │ ├── appear-richtooltip-msw.png │ │ │ ├── appear-scrollbar-gtk.png │ │ │ ├── appear-scrollbar-mac.png │ │ │ ├── appear-scrollbar-msw.png │ │ │ ├── appear-searchctrl-gtk.png │ │ │ ├── appear-searchctrl-mac.png │ │ │ ├── appear-searchctrl-msw.png │ │ │ ├── appear-slider-gtk.png │ │ │ ├── appear-slider-mac.png │ │ │ ├── appear-slider-msw.png │ │ │ ├── appear-spinbutton-gtk.png │ │ │ ├── appear-spinbutton-mac.png │ │ │ ├── appear-spinbutton-msw.png │ │ │ ├── appear-spinctrl-gtk.png │ │ │ ├── appear-spinctrl-mac.png │ │ │ ├── appear-spinctrl-msw.png │ │ │ ├── appear-spinctrldouble-gtk.png │ │ │ ├── appear-spinctrldouble-mac.png │ │ │ ├── appear-spinctrldouble-msw.png │ │ │ ├── appear-staticbitmap-gtk.png │ │ │ ├── appear-staticbitmap-mac.png │ │ │ ├── appear-staticbitmap-msw.png │ │ │ ├── appear-staticbox-gtk.png │ │ │ ├── appear-staticbox-mac.png │ │ │ ├── appear-staticbox-msw.png │ │ │ ├── appear-statictext-gtk.png │ │ │ ├── appear-statictext-mac.png │ │ │ ├── appear-statictext-msw.png │ │ │ ├── appear-textctrl-gtk.png │ │ │ ├── appear-textctrl-mac.png │ │ │ ├── appear-textctrl-msw.png │ │ │ ├── appear-timepickerctrl-gtk.png │ │ │ ├── appear-timepickerctrl-mac.png │ │ │ ├── appear-timepickerctrl-msw.png │ │ │ ├── appear-togglebutton-gtk.png │ │ │ ├── appear-togglebutton-mac.png │ │ │ ├── appear-togglebutton-msw.png │ │ │ ├── appear-treectrl-gtk.png │ │ │ ├── appear-treectrl-mac.png │ │ │ ├── appear-treectrl-msw.png │ │ │ ├── evthandler_unlink_after.dia │ │ │ ├── evthandler_unlink_after.png │ │ │ ├── evthandler_unlink_before.dia │ │ │ ├── evthandler_unlink_before.png │ │ │ ├── generic │ │ │ │ ├── auidefaulttabart.png │ │ │ │ ├── auisimpletabart.png │ │ │ │ ├── bannerwindow.png │ │ │ │ └── simplehtmllistbox.png │ │ │ ├── htmlcell_descent.png │ │ │ ├── htmlcontcell_alignv.png │ │ │ ├── htmlcontcell_indent.png │ │ │ ├── htmlwin_border.png │ │ │ ├── main_wxlogo.pdf │ │ │ ├── main_wxlogo.png │ │ │ ├── main_wxlogo.svg │ │ │ ├── overview_events_chain.dia │ │ │ ├── overview_events_chain.png │ │ │ ├── overview_events_winstack.dia │ │ │ ├── overview_events_winstack.png │ │ │ ├── overview_html_cont.png │ │ │ ├── overview_html_contbox.png │ │ │ ├── overview_html_hello.png │ │ │ ├── overview_sizer_00.png │ │ │ ├── overview_sizer_01.png │ │ │ ├── overview_sizer_02.png │ │ │ ├── overview_sizer_03.png │ │ │ ├── overview_sizer_04.png │ │ │ ├── overview_sizer_05.png │ │ │ ├── overview_sizer_06.png │ │ │ ├── overview_sizer_07.png │ │ │ ├── overview_sizer_08.png │ │ │ ├── overview_sizer_09.png │ │ │ ├── overview_sizer_10.png │ │ │ ├── overview_sizer_11.png │ │ │ ├── overview_splitter_3d.png │ │ │ ├── overview_unicode_codes.dia │ │ │ ├── overview_unicode_codes.png │ │ │ ├── overview_unicode_glyphs.png │ │ │ ├── overview_wxstring_encoding.dia │ │ │ ├── overview_wxstring_encoding.png │ │ │ └── stock │ │ │ │ ├── gtk-about.png │ │ │ │ ├── gtk-add.png │ │ │ │ ├── gtk-apply.png │ │ │ │ ├── gtk-bold.png │ │ │ │ ├── gtk-cancel.png │ │ │ │ ├── gtk-cdrom.png │ │ │ │ ├── gtk-clear.png │ │ │ │ ├── gtk-close.png │ │ │ │ ├── gtk-convert.png │ │ │ │ ├── gtk-copy.png │ │ │ │ ├── gtk-cut.png │ │ │ │ ├── gtk-delete.png │ │ │ │ ├── gtk-edit.png │ │ │ │ ├── gtk-execute.png │ │ │ │ ├── gtk-file.png │ │ │ │ ├── gtk-find-and-replace.png │ │ │ │ ├── gtk-find.png │ │ │ │ ├── gtk-floppy.png │ │ │ │ ├── gtk-go-back-ltr.png │ │ │ │ ├── gtk-go-down.png │ │ │ │ ├── gtk-go-forward-ltr.png │ │ │ │ ├── gtk-go-up.png │ │ │ │ ├── gtk-goto-bottom.png │ │ │ │ ├── gtk-goto-first-ltr.png │ │ │ │ ├── gtk-goto-last-ltr.png │ │ │ │ ├── gtk-goto-top.png │ │ │ │ ├── gtk-harddisk.png │ │ │ │ ├── gtk-help.png │ │ │ │ ├── gtk-home.png │ │ │ │ ├── gtk-indent-ltr.png │ │ │ │ ├── gtk-index.png │ │ │ │ ├── gtk-info.png │ │ │ │ ├── gtk-italic.png │ │ │ │ ├── gtk-jump-to-ltr.png │ │ │ │ ├── gtk-justify-center.png │ │ │ │ ├── gtk-justify-fill.png │ │ │ │ ├── gtk-justify-left.png │ │ │ │ ├── gtk-justify-right.png │ │ │ │ ├── gtk-network.png │ │ │ │ ├── gtk-new.png │ │ │ │ ├── gtk-no.png │ │ │ │ ├── gtk-ok.png │ │ │ │ ├── gtk-open.png │ │ │ │ ├── gtk-paste.png │ │ │ │ ├── gtk-preferences.png │ │ │ │ ├── gtk-print-preview.png │ │ │ │ ├── gtk-print.png │ │ │ │ ├── gtk-properties.png │ │ │ │ ├── gtk-quit.png │ │ │ │ ├── gtk-redo-ltr.png │ │ │ │ ├── gtk-refresh.png │ │ │ │ ├── gtk-remove.png │ │ │ │ ├── gtk-revert-to-saved-ltr.png │ │ │ │ ├── gtk-save-as.png │ │ │ │ ├── gtk-save.png │ │ │ │ ├── gtk-select-all.png │ │ │ │ ├── gtk-select-color.png │ │ │ │ ├── gtk-select-font.png │ │ │ │ ├── gtk-sort-ascending.png │ │ │ │ ├── gtk-sort-descending.png │ │ │ │ ├── gtk-spell-check.png │ │ │ │ ├── gtk-stop.png │ │ │ │ ├── gtk-strikethrough.png │ │ │ │ ├── gtk-undelete-ltr.png │ │ │ │ ├── gtk-underline.png │ │ │ │ ├── gtk-undo-ltr.png │ │ │ │ ├── gtk-unindent-ltr.png │ │ │ │ ├── gtk-yes.png │ │ │ │ ├── gtk-zoom-100.png │ │ │ │ ├── gtk-zoom-fit.png │ │ │ │ ├── gtk-zoom-in.png │ │ │ │ └── gtk-zoom-out.png │ │ ├── latex_header.tex │ │ ├── logo.png │ │ ├── mainpages │ │ │ ├── cat_classes.h │ │ │ ├── const_cpp.h │ │ │ ├── const_stdevtid.h │ │ │ ├── const_stockitems.h │ │ │ ├── const_wxusedef.h │ │ │ ├── constants.h │ │ │ ├── copyright.h │ │ │ ├── devtips.h │ │ │ ├── introduction.h │ │ │ ├── libs.h │ │ │ ├── manual.h │ │ │ ├── platdetails.h │ │ │ ├── samples.h │ │ │ ├── screenshots.h │ │ │ ├── topics.h │ │ │ ├── translations.h │ │ │ └── utilities.h │ │ ├── overviews │ │ │ ├── app.h │ │ │ ├── archive.h │ │ │ ├── aui.h │ │ │ ├── backwardcompatibility.h │ │ │ ├── bitmap.h │ │ │ ├── bookctrl.h │ │ │ ├── bufferclasses.h │ │ │ ├── changes_since28.h │ │ │ ├── commondialogs.h │ │ │ ├── config.h │ │ │ ├── container.h │ │ │ ├── cpprttidisabled.h │ │ │ ├── customwidgets.h │ │ │ ├── dataobject.h │ │ │ ├── datetime.h │ │ │ ├── dc.h │ │ │ ├── debugging.h │ │ │ ├── dialog.h │ │ │ ├── dnd.h │ │ │ ├── docview.h │ │ │ ├── envvars.h │ │ │ ├── eventhandling.h │ │ │ ├── exceptions.h │ │ │ ├── file.h │ │ │ ├── filesystem.h │ │ │ ├── font.h │ │ │ ├── fontencoding.h │ │ │ ├── grid.h │ │ │ ├── helloworld.h │ │ │ ├── html.h │ │ │ ├── internationalization.h │ │ │ ├── ipc.h │ │ │ ├── listctrl.h │ │ │ ├── log.h │ │ │ ├── mbconvclasses.h │ │ │ ├── nonenglish.h │ │ │ ├── persistence.h │ │ │ ├── printing.h │ │ │ ├── propgrid.h │ │ │ ├── python.h │ │ │ ├── refcount.h │ │ │ ├── referencenotes.h │ │ │ ├── resyntax.h │ │ │ ├── richtextctrl.h │ │ │ ├── roughguide.h │ │ │ ├── runtimeclass.h │ │ │ ├── scrolling.h │ │ │ ├── sizer.h │ │ │ ├── splitterwindow.h │ │ │ ├── stream.h │ │ │ ├── string.h │ │ │ ├── thread.h │ │ │ ├── tips.h │ │ │ ├── toolbar.h │ │ │ ├── treectrl.h │ │ │ ├── unicode.h │ │ │ ├── unixprinting.h │ │ │ ├── validator.h │ │ │ ├── windowdeletion.h │ │ │ ├── windowids.h │ │ │ ├── windowsizing.h │ │ │ ├── windowstyles.h │ │ │ ├── xrc.h │ │ │ └── xrc_format.h │ │ ├── regen.bat │ │ ├── regen.sh │ │ ├── scripts │ │ │ ├── c_tools.py │ │ │ ├── common.py │ │ │ ├── doxymlparser.py │ │ │ ├── make_bindings.py │ │ │ ├── sip_tools.py │ │ │ └── swig_tools.py │ │ └── wxwidgets.js │ ├── gpl.txt │ ├── gtk │ │ ├── install.txt │ │ ├── nonnative.txt │ │ ├── overview.md │ │ └── readme.txt │ ├── index.htm │ ├── ios │ │ └── readme.txt │ ├── lgpl.txt │ ├── licence.txt │ ├── licendoc.txt │ ├── motif │ │ ├── aix.txt │ │ ├── install.txt │ │ ├── issues.txt │ │ └── readme.txt │ ├── msw │ │ ├── gtk.txt │ │ ├── install.txt │ │ ├── readme.txt │ │ └── winxp.txt │ ├── osx │ │ ├── install.txt │ │ └── readme.txt │ ├── preamble.txt │ ├── publicity │ │ ├── WoWoW30.html │ │ ├── announce.txt │ │ └── slogans.txt │ ├── qt │ │ ├── architecture.md │ │ ├── install.txt │ │ └── readme.txt │ ├── readme.txt │ ├── release.md │ ├── tech │ │ ├── index.txt │ │ ├── tn0001.txt │ │ ├── tn0002.txt │ │ ├── tn0003.txt │ │ ├── tn0011.txt │ │ ├── tn0012.txt │ │ ├── tn0015.txt │ │ ├── tn0016.txt │ │ ├── tn0017.txt │ │ ├── tn0018.txt │ │ ├── tn0019.txt │ │ ├── tn0020.txt │ │ ├── tn0021.txt │ │ ├── tn0022.txt │ │ ├── tn0024.txt │ │ └── tn0025.txt │ ├── univ │ │ ├── porting.txt │ │ └── readme.txt │ ├── vms │ │ └── readme.txt │ ├── wine │ │ ├── COPYING.LIB │ │ ├── changes.txt │ │ ├── install.txt │ │ └── readme.txt │ ├── x11 │ │ ├── install.txt │ │ └── readme.txt │ └── xserver.txt │ ├── include │ ├── msvc │ │ └── wx │ │ │ └── setup.h │ └── wx │ │ ├── aboutdlg.h │ │ ├── accel.h │ │ ├── access.h │ │ ├── activityindicator.h │ │ ├── addremovectrl.h │ │ ├── affinematrix2d.h │ │ ├── affinematrix2dbase.h │ │ ├── afterstd.h │ │ ├── android │ │ ├── chkconf.h │ │ ├── config_android.h │ │ └── setup.h │ │ ├── anidecod.h │ │ ├── animate.h │ │ ├── animdecod.h │ │ ├── any.h │ │ ├── anybutton.h │ │ ├── anystr.h │ │ ├── app.h │ │ ├── appprogress.h │ │ ├── apptrait.h │ │ ├── archive.h │ │ ├── arrimpl.cpp │ │ ├── arrstr.h │ │ ├── artprov.h │ │ ├── atomic.h │ │ ├── aui │ │ ├── aui.h │ │ ├── auibar.h │ │ ├── auibook.h │ │ ├── barartmsw.h │ │ ├── dockart.h │ │ ├── floatpane.h │ │ ├── framemanager.h │ │ ├── tabart.h │ │ ├── tabartgtk.h │ │ ├── tabartmsw.h │ │ └── tabmdi.h │ │ ├── bannerwindow.h │ │ ├── base64.h │ │ ├── beforestd.h │ │ ├── bitmap.h │ │ ├── bmpbuttn.h │ │ ├── bmpcbox.h │ │ ├── bookctrl.h │ │ ├── brush.h │ │ ├── buffer.h │ │ ├── build.h │ │ ├── busyinfo.h │ │ ├── button.h │ │ ├── calctrl.h │ │ ├── caret.h │ │ ├── chartype.h │ │ ├── checkbox.h │ │ ├── checkeddelete.h │ │ ├── checklst.h │ │ ├── chkconf.h │ │ ├── choicdlg.h │ │ ├── choice.h │ │ ├── choicebk.h │ │ ├── clipbrd.h │ │ ├── clntdata.h │ │ ├── clrpicker.h │ │ ├── cmdargs.h │ │ ├── cmdline.h │ │ ├── cmdproc.h │ │ ├── cmndata.h │ │ ├── collheaderctrl.h │ │ ├── collpane.h │ │ ├── colordlg.h │ │ ├── colour.h │ │ ├── colourdata.h │ │ ├── combo.h │ │ ├── combobox.h │ │ ├── commandlinkbutton.h │ │ ├── compiler.h │ │ ├── compositewin.h │ │ ├── confbase.h │ │ ├── config.h │ │ ├── containr.h │ │ ├── control.h │ │ ├── convauto.h │ │ ├── cpp.h │ │ ├── cppunit.h │ │ ├── crt.h │ │ ├── cshelp.h │ │ ├── ctrlsub.h │ │ ├── cursor.h │ │ ├── custombgwin.h │ │ ├── dataobj.h │ │ ├── dataview.h │ │ ├── datectrl.h │ │ ├── dateevt.h │ │ ├── datetime.h │ │ ├── datetimectrl.h │ │ ├── datstrm.h │ │ ├── dc.h │ │ ├── dcbuffer.h │ │ ├── dcclient.h │ │ ├── dcgraph.h │ │ ├── dcmemory.h │ │ ├── dcmirror.h │ │ ├── dcprint.h │ │ ├── dcps.h │ │ ├── dcscreen.h │ │ ├── dcsvg.h │ │ ├── dde.h │ │ ├── debug.h │ │ ├── debugrpt.h │ │ ├── defs.h │ │ ├── dfb │ │ ├── app.h │ │ ├── bitmap.h │ │ ├── brush.h │ │ ├── chkconf.h │ │ ├── cursor.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcscreen.h │ │ ├── dfbptr.h │ │ ├── evtloop.h │ │ ├── font.h │ │ ├── nonownedwnd.h │ │ ├── pen.h │ │ ├── popupwin.h │ │ ├── private.h │ │ ├── private │ │ │ ├── fontmgr.h │ │ │ └── overlay.h │ │ ├── region.h │ │ ├── toplevel.h │ │ ├── window.h │ │ └── wrapdfb.h │ │ ├── dialog.h │ │ ├── dialup.h │ │ ├── dir.h │ │ ├── dirctrl.h │ │ ├── dirdlg.h │ │ ├── display.h │ │ ├── display_impl.h │ │ ├── dlimpexp.h │ │ ├── dlist.h │ │ ├── dnd.h │ │ ├── docmdi.h │ │ ├── docview.h │ │ ├── dragimag.h │ │ ├── dvrenderers.h │ │ ├── dynarray.h │ │ ├── dynlib.h │ │ ├── dynload.h │ │ ├── editlbox.h │ │ ├── effects.h │ │ ├── encconv.h │ │ ├── encinfo.h │ │ ├── event.h │ │ ├── eventfilter.h │ │ ├── evtloop.h │ │ ├── evtloopsrc.h │ │ ├── except.h │ │ ├── fdrepdlg.h │ │ ├── features.h │ │ ├── ffile.h │ │ ├── file.h │ │ ├── fileconf.h │ │ ├── filectrl.h │ │ ├── filedlg.h │ │ ├── filefn.h │ │ ├── filehistory.h │ │ ├── filename.h │ │ ├── filepicker.h │ │ ├── filesys.h │ │ ├── flags.h │ │ ├── fmappriv.h │ │ ├── font.h │ │ ├── fontdata.h │ │ ├── fontdlg.h │ │ ├── fontenc.h │ │ ├── fontenum.h │ │ ├── fontmap.h │ │ ├── fontpicker.h │ │ ├── fontutil.h │ │ ├── frame.h │ │ ├── fs_arc.h │ │ ├── fs_filter.h │ │ ├── fs_inet.h │ │ ├── fs_mem.h │ │ ├── fs_zip.h │ │ ├── fswatcher.h │ │ ├── gauge.h │ │ ├── gbsizer.h │ │ ├── gdicmn.h │ │ ├── gdiobj.h │ │ ├── generic │ │ ├── aboutdlgg.h │ │ ├── accel.h │ │ ├── activityindicator.h │ │ ├── animate.h │ │ ├── bmpcbox.h │ │ ├── busyinfo.h │ │ ├── buttonbar.h │ │ ├── calctrlg.h │ │ ├── caret.h │ │ ├── choicdgg.h │ │ ├── clrpickerg.h │ │ ├── collheaderctrl.h │ │ ├── collpaneg.h │ │ ├── colour.h │ │ ├── colrdlgg.h │ │ ├── combo.h │ │ ├── ctrlsub.h │ │ ├── custombgwin.h │ │ ├── dataview.h │ │ ├── datectrl.h │ │ ├── dcpsg.h │ │ ├── dirctrlg.h │ │ ├── dirdlgg.h │ │ ├── dragimgg.h │ │ ├── dvrenderer.h │ │ ├── dvrenderers.h │ │ ├── fdrepdlg.h │ │ ├── filectrlg.h │ │ ├── filedlgg.h │ │ ├── filepickerg.h │ │ ├── fontdlgg.h │ │ ├── fontpickerg.h │ │ ├── fswatcher.h │ │ ├── grid.h │ │ ├── gridctrl.h │ │ ├── grideditors.h │ │ ├── gridsel.h │ │ ├── headerctrlg.h │ │ ├── helpext.h │ │ ├── hyperlink.h │ │ ├── icon.h │ │ ├── imaglist.h │ │ ├── infobar.h │ │ ├── laywin.h │ │ ├── listctrl.h │ │ ├── logg.h │ │ ├── mask.h │ │ ├── mdig.h │ │ ├── msgdlgg.h │ │ ├── notebook.h │ │ ├── notifmsg.h │ │ ├── numdlgg.h │ │ ├── paletteg.h │ │ ├── panelg.h │ │ ├── printps.h │ │ ├── private │ │ │ ├── addremovectrl.h │ │ │ ├── grid.h │ │ │ ├── listctrl.h │ │ │ ├── markuptext.h │ │ │ ├── notifmsg.h │ │ │ ├── richtooltip.h │ │ │ ├── textmeasure.h │ │ │ ├── timer.h │ │ │ └── widthcalc.h │ │ ├── prntdlgg.h │ │ ├── progdlgg.h │ │ ├── propdlg.h │ │ ├── region.h │ │ ├── richmsgdlgg.h │ │ ├── sashwin.h │ │ ├── scrolwin.h │ │ ├── spinctlg.h │ │ ├── splash.h │ │ ├── splitter.h │ │ ├── srchctlg.h │ │ ├── statbmpg.h │ │ ├── statline.h │ │ ├── stattextg.h │ │ ├── statusbr.h │ │ ├── tabg.h │ │ ├── textdlgg.h │ │ ├── timectrl.h │ │ ├── treectlg.h │ │ └── wizard.h │ │ ├── geometry.h │ │ ├── gifdecod.h │ │ ├── glcanvas.h │ │ ├── graphics.h │ │ ├── grid.h │ │ ├── gtk │ │ ├── accel.h │ │ ├── activityindicator.h │ │ ├── animate.h │ │ ├── anybutton.h │ │ ├── app.h │ │ ├── assertdlg_gtk.h │ │ ├── bitmap.h │ │ ├── bmpbuttn.h │ │ ├── bmpcbox.h │ │ ├── brush.h │ │ ├── button.h │ │ ├── calctrl.h │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── chkconf.h │ │ ├── choice.h │ │ ├── clipbrd.h │ │ ├── clrpicker.h │ │ ├── collpane.h │ │ ├── colordlg.h │ │ ├── colour.h │ │ ├── combobox.h │ │ ├── control.h │ │ ├── cursor.h │ │ ├── dataform.h │ │ ├── dataobj.h │ │ ├── dataobj2.h │ │ ├── dataview.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcscreen.h │ │ ├── dialog.h │ │ ├── dirdlg.h │ │ ├── dnd.h │ │ ├── dvrenderer.h │ │ ├── dvrenderers.h │ │ ├── evtloop.h │ │ ├── evtloopsrc.h │ │ ├── filectrl.h │ │ ├── filedlg.h │ │ ├── filehistory.h │ │ ├── filepicker.h │ │ ├── font.h │ │ ├── fontdlg.h │ │ ├── fontpicker.h │ │ ├── frame.h │ │ ├── gauge.h │ │ ├── glcanvas.h │ │ ├── gnome │ │ │ └── gvfs.h │ │ ├── hyperlink.h │ │ ├── infobar.h │ │ ├── listbox.h │ │ ├── mdi.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── minifram.h │ │ ├── msgdlg.h │ │ ├── nonownedwnd.h │ │ ├── notebook.h │ │ ├── pen.h │ │ ├── popupwin.h │ │ ├── print.h │ │ ├── private.h │ │ ├── private │ │ │ ├── addremovectrl.h │ │ │ ├── dialogcount.h │ │ │ ├── error.h │ │ │ ├── event.h │ │ │ ├── eventsdisabler.h │ │ │ ├── gdkconv.h │ │ │ ├── gtk2-compat.h │ │ │ ├── gtk3-compat.h │ │ │ ├── list.h │ │ │ ├── messagetype.h │ │ │ ├── mnemonics.h │ │ │ ├── object.h │ │ │ ├── string.h │ │ │ ├── textmeasure.h │ │ │ ├── timer.h │ │ │ ├── treeentry_gtk.h │ │ │ ├── treeview.h │ │ │ ├── value.h │ │ │ └── win_gtk.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── region.h │ │ ├── scrolbar.h │ │ ├── scrolwin.h │ │ ├── setup0.h │ │ ├── slider.h │ │ ├── spinbutt.h │ │ ├── spinctrl.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── taskbar.h │ │ ├── textctrl.h │ │ ├── textentry.h │ │ ├── tglbtn.h │ │ ├── toolbar.h │ │ ├── tooltip.h │ │ ├── toplevel.h │ │ ├── webview_webkit.h │ │ ├── webviewhistoryitem_webkit.h │ │ └── window.h │ │ ├── gtk1 │ │ ├── accel.h │ │ ├── app.h │ │ ├── bitmap.h │ │ ├── bmpbuttn.h │ │ ├── brush.h │ │ ├── button.h │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── choice.h │ │ ├── clipbrd.h │ │ ├── colordlg.h │ │ ├── colour.h │ │ ├── combobox.h │ │ ├── control.h │ │ ├── cursor.h │ │ ├── dataform.h │ │ ├── dataobj.h │ │ ├── dataobj2.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcscreen.h │ │ ├── dialog.h │ │ ├── dnd.h │ │ ├── filedlg.h │ │ ├── font.h │ │ ├── fontdlg.h │ │ ├── frame.h │ │ ├── gauge.h │ │ ├── glcanvas.h │ │ ├── listbox.h │ │ ├── mdi.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── minifram.h │ │ ├── msgdlg.h │ │ ├── notebook.h │ │ ├── pen.h │ │ ├── popupwin.h │ │ ├── private.h │ │ ├── private │ │ │ ├── mnemonics.h │ │ │ └── timer.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── region.h │ │ ├── scrolbar.h │ │ ├── scrolwin.h │ │ ├── slider.h │ │ ├── spinbutt.h │ │ ├── spinctrl.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── textctrl.h │ │ ├── tglbtn.h │ │ ├── toolbar.h │ │ ├── tooltip.h │ │ ├── toplevel.h │ │ ├── treectrl.h │ │ ├── win_gtk.h │ │ └── window.h │ │ ├── hash.h │ │ ├── hashmap.h │ │ ├── hashset.h │ │ ├── headercol.h │ │ ├── headerctrl.h │ │ ├── help.h │ │ ├── helpbase.h │ │ ├── helphtml.h │ │ ├── helpwin.h │ │ ├── html │ │ ├── forcelnk.h │ │ ├── helpctrl.h │ │ ├── helpdata.h │ │ ├── helpdlg.h │ │ ├── helpfrm.h │ │ ├── helpwnd.h │ │ ├── htmlcell.h │ │ ├── htmldefs.h │ │ ├── htmlfilt.h │ │ ├── htmlpars.h │ │ ├── htmlproc.h │ │ ├── htmltag.h │ │ ├── htmlwin.h │ │ ├── htmprint.h │ │ ├── m_templ.h │ │ ├── styleparams.h │ │ ├── webkit.h │ │ └── winpars.h │ │ ├── htmllbox.h │ │ ├── hyperlink.h │ │ ├── icon.h │ │ ├── iconbndl.h │ │ ├── iconloc.h │ │ ├── imagbmp.h │ │ ├── image.h │ │ ├── imaggif.h │ │ ├── imagiff.h │ │ ├── imagjpeg.h │ │ ├── imaglist.h │ │ ├── imagpcx.h │ │ ├── imagpng.h │ │ ├── imagpnm.h │ │ ├── imagtga.h │ │ ├── imagtiff.h │ │ ├── imagxpm.h │ │ ├── infobar.h │ │ ├── init.h │ │ ├── intl.h │ │ ├── iosfwrap.h │ │ ├── ioswrap.h │ │ ├── ipc.h │ │ ├── ipcbase.h │ │ ├── itemid.h │ │ ├── joystick.h │ │ ├── kbdstate.h │ │ ├── language.h │ │ ├── layout.h │ │ ├── laywin.h │ │ ├── link.h │ │ ├── list.h │ │ ├── listbase.h │ │ ├── listbook.h │ │ ├── listbox.h │ │ ├── listctrl.h │ │ ├── listimpl.cpp │ │ ├── log.h │ │ ├── longlong.h │ │ ├── math.h │ │ ├── matrix.h │ │ ├── mdi.h │ │ ├── mediactrl.h │ │ ├── memconf.h │ │ ├── memory.h │ │ ├── memtext.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── meta │ │ ├── convertible.h │ │ ├── if.h │ │ ├── implicitconversion.h │ │ ├── int2type.h │ │ ├── movable.h │ │ ├── pod.h │ │ └── removeref.h │ │ ├── metafile.h │ │ ├── mimetype.h │ │ ├── minifram.h │ │ ├── modalhook.h │ │ ├── module.h │ │ ├── motif │ │ ├── accel.h │ │ ├── app.h │ │ ├── bmpbuttn.h │ │ ├── bmpmotif.h │ │ ├── button.h │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── chkconf.h │ │ ├── choice.h │ │ ├── clipbrd.h │ │ ├── colour.h │ │ ├── combobox.h │ │ ├── control.h │ │ ├── ctrlsub.h │ │ ├── cursor.h │ │ ├── dataform.h │ │ ├── dataobj.h │ │ ├── dataobj2.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcprint.h │ │ ├── dcscreen.h │ │ ├── dialog.h │ │ ├── dnd.h │ │ ├── filedlg.h │ │ ├── font.h │ │ ├── frame.h │ │ ├── gauge.h │ │ ├── icon.h │ │ ├── listbox.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── minifram.h │ │ ├── msgdlg.h │ │ ├── popupwin.h │ │ ├── print.h │ │ ├── private.h │ │ ├── private │ │ │ └── timer.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── scrolbar.h │ │ ├── setup0.h │ │ ├── slider.h │ │ ├── spinbutt.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── stattext.h │ │ ├── textctrl.h │ │ ├── textentry.h │ │ ├── tglbtn.h │ │ ├── toolbar.h │ │ ├── toplevel.h │ │ └── window.h │ │ ├── mousemanager.h │ │ ├── mousestate.h │ │ ├── msgdlg.h │ │ ├── msgout.h │ │ ├── msgqueue.h │ │ ├── mstream.h │ │ ├── msw │ │ ├── accel.h │ │ ├── amd64.manifest │ │ ├── anybutton.h │ │ ├── app.h │ │ ├── appprogress.h │ │ ├── apptbase.h │ │ ├── apptrait.h │ │ ├── bitmap.h │ │ ├── blank.cur │ │ ├── bmpbuttn.h │ │ ├── bmpcbox.h │ │ ├── brush.h │ │ ├── bullseye.cur │ │ ├── button.h │ │ ├── calctrl.h │ │ ├── caret.h │ │ ├── cdrom.ico │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── child.ico │ │ ├── chkconf.h │ │ ├── choice.h │ │ ├── clipbrd.h │ │ ├── colordlg.h │ │ ├── colour.h │ │ ├── colours.bmp │ │ ├── combo.h │ │ ├── combobox.h │ │ ├── commandlinkbutton.h │ │ ├── computer.ico │ │ ├── control.h │ │ ├── crashrpt.h │ │ ├── cross.cur │ │ ├── csquery.bmp │ │ ├── ctrlsub.h │ │ ├── cursor.h │ │ ├── custombgwin.h │ │ ├── datectrl.h │ │ ├── datetimectrl.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcprint.h │ │ ├── dcscreen.h │ │ ├── dde.h │ │ ├── debughlp.h │ │ ├── dialog.h │ │ ├── dib.h │ │ ├── dirdlg.h │ │ ├── dragimag.h │ │ ├── drive.ico │ │ ├── enhmeta.h │ │ ├── evtloop.h │ │ ├── evtloopconsole.h │ │ ├── fdrepdlg.h │ │ ├── file1.ico │ │ ├── filedlg.h │ │ ├── floppy.ico │ │ ├── folder1.ico │ │ ├── folder2.ico │ │ ├── font.h │ │ ├── fontdlg.h │ │ ├── frame.h │ │ ├── fswatcher.h │ │ ├── gauge.h │ │ ├── gccpriv.h │ │ ├── gdiimage.h │ │ ├── genrcdefs.h │ │ ├── glcanvas.h │ │ ├── hand.cur │ │ ├── headerctrl.h │ │ ├── helpbest.h │ │ ├── helpchm.h │ │ ├── helpwin.h │ │ ├── htmlhelp.h │ │ ├── hyperlink.h │ │ ├── ia64.manifest │ │ ├── icon.h │ │ ├── imaglist.h │ │ ├── iniconf.h │ │ ├── init.h │ │ ├── joystick.h │ │ ├── libraries.h │ │ ├── listbox.h │ │ ├── listctrl.h │ │ ├── magnif1.cur │ │ ├── mdi.h │ │ ├── mdi.ico │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── metafile.h │ │ ├── mimetype.h │ │ ├── minifram.h │ │ ├── missing.h │ │ ├── msgdlg.h │ │ ├── msvcrt.h │ │ ├── nonownedwnd.h │ │ ├── notebook.h │ │ ├── ole │ │ │ ├── access.h │ │ │ ├── activex.h │ │ │ ├── automtn.h │ │ │ ├── dataform.h │ │ │ ├── dataobj.h │ │ │ ├── dataobj2.h │ │ │ ├── dropsrc.h │ │ │ ├── droptgt.h │ │ │ ├── oleutils.h │ │ │ ├── safearray.h │ │ │ └── uuid.h │ │ ├── ownerdrawnbutton.h │ │ ├── ownerdrw.h │ │ ├── palette.h │ │ ├── panel.h │ │ ├── pbrush.cur │ │ ├── pen.h │ │ ├── pencil.cur │ │ ├── pntleft.cur │ │ ├── pntright.cur │ │ ├── popupwin.h │ │ ├── printdlg.h │ │ ├── printwin.h │ │ ├── private.h │ │ ├── private │ │ │ ├── button.h │ │ │ ├── comptr.h │ │ │ ├── datecontrols.h │ │ │ ├── dc.h │ │ │ ├── event.h │ │ │ ├── fswatcher.h │ │ │ ├── hiddenwin.h │ │ │ ├── keyboard.h │ │ │ ├── metrics.h │ │ │ ├── msgdlg.h │ │ │ ├── pipestream.h │ │ │ ├── sockmsw.h │ │ │ ├── textmeasure.h │ │ │ └── timer.h │ │ ├── progdlg.h │ │ ├── question.ico │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── rcdefs.h │ │ ├── regconf.h │ │ ├── region.h │ │ ├── registry.h │ │ ├── removble.ico │ │ ├── richmsgdlg.h │ │ ├── roller.cur │ │ ├── rt │ │ │ ├── private │ │ │ │ └── notifmsg.h │ │ │ └── utils.h │ │ ├── scrolbar.h │ │ ├── seh.h │ │ ├── setup0.h │ │ ├── setup_inc.h │ │ ├── slider.h │ │ ├── sound.h │ │ ├── spinbutt.h │ │ ├── spinctrl.h │ │ ├── stackwalk.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── statusbar.h │ │ ├── std.ico │ │ ├── stdpaths.h │ │ ├── subwin.h │ │ ├── taskbar.h │ │ ├── taskbarbutton.h │ │ ├── textctrl.h │ │ ├── textentry.h │ │ ├── tglbtn.h │ │ ├── timectrl.h │ │ ├── tls.h │ │ ├── toolbar.h │ │ ├── tooltip.h │ │ ├── toplevel.h │ │ ├── treectrl.h │ │ ├── uxtheme.h │ │ ├── uxthemep.h │ │ ├── webview_ie.h │ │ ├── webview_missing.h │ │ ├── webviewhistoryitem_ie.h │ │ ├── window.h │ │ ├── winundef.h │ │ ├── wrapcctl.h │ │ ├── wrapcdlg.h │ │ ├── wrapgdip.h │ │ ├── wrapshl.h │ │ ├── wrapwin.h │ │ ├── wx.manifest │ │ └── wx.rc │ │ ├── nativewin.h │ │ ├── nonownedwnd.h │ │ ├── notebook.h │ │ ├── notifmsg.h │ │ ├── numdlg.h │ │ ├── numformatter.h │ │ ├── object.h │ │ ├── odcombo.h │ │ ├── osx │ │ ├── accel.h │ │ ├── activityindicator.h │ │ ├── anybutton.h │ │ ├── app.h │ │ ├── appprogress.h │ │ ├── bitmap.h │ │ ├── bmpbuttn.h │ │ ├── brush.h │ │ ├── button.h │ │ ├── carbon │ │ │ ├── private │ │ │ │ ├── overlay.h │ │ │ │ └── print.h │ │ │ └── region.h │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── chkconf.h │ │ ├── choice.h │ │ ├── clipbrd.h │ │ ├── cocoa │ │ │ ├── chkconf.h │ │ │ ├── dataview.h │ │ │ ├── evtloop.h │ │ │ ├── private.h │ │ │ ├── private │ │ │ │ ├── date.h │ │ │ │ ├── markuptoattr.h │ │ │ │ ├── overlay.h │ │ │ │ └── textimpl.h │ │ │ └── stdpaths.h │ │ ├── colordlg.h │ │ ├── colour.h │ │ ├── combobox.h │ │ ├── config_xcode.h │ │ ├── control.h │ │ ├── core │ │ │ ├── cfdataref.h │ │ │ ├── cfref.h │ │ │ ├── cfstring.h │ │ │ ├── colour.h │ │ │ ├── dataview.h │ │ │ ├── evtloop.h │ │ │ ├── hid.h │ │ │ ├── joystick.h │ │ │ ├── mimetype.h │ │ │ ├── objcid.h │ │ │ ├── private.h │ │ │ └── private │ │ │ │ ├── datetimectrl.h │ │ │ │ ├── strconv_cf.h │ │ │ │ └── timer.h │ │ ├── cursor.h │ │ ├── dataform.h │ │ ├── dataobj.h │ │ ├── dataobj2.h │ │ ├── dataview.h │ │ ├── datectrl.h │ │ ├── datetimectrl.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcprint.h │ │ ├── dcscreen.h │ │ ├── dialog.h │ │ ├── dirdlg.h │ │ ├── dnd.h │ │ ├── dvrenderer.h │ │ ├── dvrenderers.h │ │ ├── evtloop.h │ │ ├── evtloopsrc.h │ │ ├── filedlg.h │ │ ├── font.h │ │ ├── fontdlg.h │ │ ├── frame.h │ │ ├── fswatcher_fsevents.h │ │ ├── gauge.h │ │ ├── glcanvas.h │ │ ├── icon.h │ │ ├── imaglist.h │ │ ├── iphone │ │ │ ├── chkconf.h │ │ │ ├── private.h │ │ │ └── private │ │ │ │ └── textimpl.h │ │ ├── joystick.h │ │ ├── listbox.h │ │ ├── listctrl.h │ │ ├── mdi.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── metafile.h │ │ ├── mimetype.h │ │ ├── minifram.h │ │ ├── msgdlg.h │ │ ├── nonownedwnd.h │ │ ├── notebook.h │ │ ├── palette.h │ │ ├── pen.h │ │ ├── popupwin.h │ │ ├── printdlg.h │ │ ├── printmac.h │ │ ├── private.h │ │ ├── private │ │ │ ├── addremovectrl.h │ │ │ ├── print.h │ │ │ └── timer.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── region.h │ │ ├── scrolbar.h │ │ ├── setup0.h │ │ ├── slider.h │ │ ├── sound.h │ │ ├── spinbutt.h │ │ ├── srchctrl.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── statusbr.h │ │ ├── taskbarosx.h │ │ ├── textctrl.h │ │ ├── textentry.h │ │ ├── tglbtn.h │ │ ├── timectrl.h │ │ ├── toolbar.h │ │ ├── tooltip.h │ │ ├── toplevel.h │ │ ├── uma.h │ │ ├── webview_webkit.h │ │ ├── webviewhistoryitem_webkit.h │ │ └── window.h │ │ ├── overlay.h │ │ ├── ownerdrw.h │ │ ├── palette.h │ │ ├── panel.h │ │ ├── paper.h │ │ ├── pen.h │ │ ├── persist.h │ │ ├── persist │ │ ├── bookctrl.h │ │ ├── splitter.h │ │ ├── toplevel.h │ │ ├── treebook.h │ │ └── window.h │ │ ├── pickerbase.h │ │ ├── platform.h │ │ ├── platinfo.h │ │ ├── popupwin.h │ │ ├── position.h │ │ ├── power.h │ │ ├── preferences.h │ │ ├── print.h │ │ ├── printdlg.h │ │ ├── private │ │ ├── addremovectrl.h │ │ ├── eventloopsourcesmanager.h │ │ ├── fd.h │ │ ├── fdiodispatcher.h │ │ ├── fdioeventloopsourcehandler.h │ │ ├── fdiohandler.h │ │ ├── fdiomanager.h │ │ ├── fileback.h │ │ ├── filename.h │ │ ├── flagscheck.h │ │ ├── fontmgr.h │ │ ├── fswatcher.h │ │ ├── graphics.h │ │ ├── launchbrowser.h │ │ ├── markupparser.h │ │ ├── markupparserattr.h │ │ ├── notifmsg.h │ │ ├── overlay.h │ │ ├── pipestream.h │ │ ├── preferences.h │ │ ├── richtooltip.h │ │ ├── sckaddr.h │ │ ├── selectdispatcher.h │ │ ├── socket.h │ │ ├── streamtempinput.h │ │ ├── textmeasure.h │ │ ├── threadinfo.h │ │ ├── timer.h │ │ ├── window.h │ │ └── wxprintf.h │ │ ├── prntbase.h │ │ ├── process.h │ │ ├── progdlg.h │ │ ├── propdlg.h │ │ ├── propgrid │ │ ├── advprops.h │ │ ├── editors.h │ │ ├── manager.h │ │ ├── property.h │ │ ├── propgrid.h │ │ ├── propgriddefs.h │ │ ├── propgridiface.h │ │ ├── propgridpagestate.h │ │ └── props.h │ │ ├── protocol │ │ ├── file.h │ │ ├── ftp.h │ │ ├── http.h │ │ ├── log.h │ │ └── protocol.h │ │ ├── ptr_scpd.h │ │ ├── ptr_shrd.h │ │ ├── qt │ │ ├── accel.h │ │ ├── anybutton.h │ │ ├── app.h │ │ ├── bitmap.h │ │ ├── bmpbuttn.h │ │ ├── brush.h │ │ ├── button.h │ │ ├── calctrl.h │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── choice.h │ │ ├── clipbrd.h │ │ ├── clrpicker.h │ │ ├── colordlg.h │ │ ├── colour.h │ │ ├── combobox.h │ │ ├── control.h │ │ ├── ctrlsub.h │ │ ├── cursor.h │ │ ├── dataform.h │ │ ├── dataobj.h │ │ ├── dataobj2.h │ │ ├── dataview.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcprint.h │ │ ├── dcscreen.h │ │ ├── defs.h │ │ ├── dialog.h │ │ ├── dirdlg.h │ │ ├── dnd.h │ │ ├── dvrenderer.h │ │ ├── dvrenderers.h │ │ ├── evtloop.h │ │ ├── filedlg.h │ │ ├── font.h │ │ ├── fontdlg.h │ │ ├── frame.h │ │ ├── gauge.h │ │ ├── glcanvas.h │ │ ├── listbox.h │ │ ├── listctrl.h │ │ ├── mdi.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── minifram.h │ │ ├── msgdlg.h │ │ ├── notebook.h │ │ ├── palette.h │ │ ├── pen.h │ │ ├── popupwin.h │ │ ├── printdlg.h │ │ ├── printqt.h │ │ ├── private │ │ │ ├── converter.h │ │ │ ├── pointer.h │ │ │ ├── utils.h │ │ │ └── winevent.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── region.h │ │ ├── scrolbar.h │ │ ├── slider.h │ │ ├── spinbutt.h │ │ ├── spinctrl.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── statusbar.h │ │ ├── taskbar.h │ │ ├── textctrl.h │ │ ├── textentry.h │ │ ├── tglbtn.h │ │ ├── timer.h │ │ ├── toolbar.h │ │ ├── tooltip.h │ │ ├── toplevel.h │ │ ├── treectrl.h │ │ └── window.h │ │ ├── quantize.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── range.h │ │ ├── rawbmp.h │ │ ├── rearrangectrl.h │ │ ├── recguard.h │ │ ├── regex.h │ │ ├── region.h │ │ ├── renderer.h │ │ ├── ribbon │ │ ├── art.h │ │ ├── art_internal.h │ │ ├── bar.h │ │ ├── buttonbar.h │ │ ├── control.h │ │ ├── gallery.h │ │ ├── page.h │ │ ├── panel.h │ │ └── toolbar.h │ │ ├── richmsgdlg.h │ │ ├── richtext │ │ ├── bitmaps │ │ │ └── image_placeholder24x24.xpm │ │ ├── richtextbackgroundpage.h │ │ ├── richtextborderspage.h │ │ ├── richtextbuffer.h │ │ ├── richtextbulletspage.h │ │ ├── richtextctrl.h │ │ ├── richtextdialogpage.h │ │ ├── richtextfontpage.h │ │ ├── richtextformatdlg.h │ │ ├── richtexthtml.h │ │ ├── richtextimagedlg.h │ │ ├── richtextindentspage.h │ │ ├── richtextliststylepage.h │ │ ├── richtextmarginspage.h │ │ ├── richtextprint.h │ │ ├── richtextsizepage.h │ │ ├── richtextstyledlg.h │ │ ├── richtextstylepage.h │ │ ├── richtextstyles.h │ │ ├── richtextsymboldlg.h │ │ ├── richtexttabspage.h │ │ ├── richtextuicustomization.h │ │ └── richtextxml.h │ │ ├── richtooltip.h │ │ ├── rtti.h │ │ ├── sashwin.h │ │ ├── sckaddr.h │ │ ├── sckipc.h │ │ ├── sckstrm.h │ │ ├── scopedarray.h │ │ ├── scopedptr.h │ │ ├── scopeguard.h │ │ ├── scrolbar.h │ │ ├── scrolwin.h │ │ ├── selstore.h │ │ ├── settings.h │ │ ├── setup_inc.h │ │ ├── setup_redirect.h │ │ ├── sharedptr.h │ │ ├── simplebook.h │ │ ├── sizer.h │ │ ├── slider.h │ │ ├── snglinst.h │ │ ├── socket.h │ │ ├── sound.h │ │ ├── spinbutt.h │ │ ├── spinctrl.h │ │ ├── splash.h │ │ ├── splitter.h │ │ ├── srchctrl.h │ │ ├── sstream.h │ │ ├── stack.h │ │ ├── stackwalk.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── statusbr.h │ │ ├── stc │ │ ├── private.h │ │ └── stc.h │ │ ├── stdpaths.h │ │ ├── stdstream.h │ │ ├── stockitem.h │ │ ├── stopwatch.h │ │ ├── strconv.h │ │ ├── stream.h │ │ ├── string.h │ │ ├── stringimpl.h │ │ ├── stringops.h │ │ ├── strvararg.h │ │ ├── sysopt.h │ │ ├── systhemectrl.h │ │ ├── tarstrm.h │ │ ├── taskbar.h │ │ ├── taskbarbutton.h │ │ ├── tbarbase.h │ │ ├── testing.h │ │ ├── textbuf.h │ │ ├── textcompleter.h │ │ ├── textctrl.h │ │ ├── textdlg.h │ │ ├── textentry.h │ │ ├── textfile.h │ │ ├── textwrapper.h │ │ ├── tglbtn.h │ │ ├── thread.h │ │ ├── thrimpl.cpp │ │ ├── time.h │ │ ├── timectrl.h │ │ ├── timer.h │ │ ├── tipdlg.h │ │ ├── tipwin.h │ │ ├── tls.h │ │ ├── tokenzr.h │ │ ├── toolbar.h │ │ ├── toolbook.h │ │ ├── tooltip.h │ │ ├── toplevel.h │ │ ├── tracker.h │ │ ├── translation.h │ │ ├── treebase.h │ │ ├── treebook.h │ │ ├── treectrl.h │ │ ├── treelist.h │ │ ├── txtstrm.h │ │ ├── typeinfo.h │ │ ├── types.h │ │ ├── uiaction.h │ │ ├── unichar.h │ │ ├── univ │ │ ├── anybutton.h │ │ ├── app.h │ │ ├── bmpbuttn.h │ │ ├── button.h │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── chkconf.h │ │ ├── choice.h │ │ ├── colschem.h │ │ ├── combobox.h │ │ ├── control.h │ │ ├── custombgwin.h │ │ ├── dialog.h │ │ ├── frame.h │ │ ├── gauge.h │ │ ├── inpcons.h │ │ ├── inphand.h │ │ ├── listbox.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── notebook.h │ │ ├── panel.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── renderer.h │ │ ├── scrarrow.h │ │ ├── scrolbar.h │ │ ├── scrthumb.h │ │ ├── scrtimer.h │ │ ├── setup0.h │ │ ├── setup_inc.h │ │ ├── slider.h │ │ ├── spinbutt.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── statusbr.h │ │ ├── stdrend.h │ │ ├── textctrl.h │ │ ├── tglbtn.h │ │ ├── theme.h │ │ ├── toolbar.h │ │ ├── toplevel.h │ │ └── window.h │ │ ├── unix │ │ ├── app.h │ │ ├── apptbase.h │ │ ├── apptrait.h │ │ ├── chkconf.h │ │ ├── evtloop.h │ │ ├── evtloopsrc.h │ │ ├── fontutil.h │ │ ├── fswatcher_inotify.h │ │ ├── fswatcher_kqueue.h │ │ ├── glx11.h │ │ ├── joystick.h │ │ ├── mimetype.h │ │ ├── pipe.h │ │ ├── private.h │ │ ├── private │ │ │ ├── epolldispatcher.h │ │ │ ├── execute.h │ │ │ ├── executeiohandler.h │ │ │ ├── fdiounix.h │ │ │ ├── fswatcher_inotify.h │ │ │ ├── fswatcher_kqueue.h │ │ │ ├── pipestream.h │ │ │ ├── sockunix.h │ │ │ ├── timer.h │ │ │ └── wakeuppipe.h │ │ ├── sound.h │ │ ├── stackwalk.h │ │ ├── stdpaths.h │ │ ├── taskbarx11.h │ │ ├── tls.h │ │ └── utilsx11.h │ │ ├── uri.h │ │ ├── url.h │ │ ├── ustring.h │ │ ├── utils.h │ │ ├── valgen.h │ │ ├── validate.h │ │ ├── valnum.h │ │ ├── valtext.h │ │ ├── variant.h │ │ ├── variantbase.h │ │ ├── vector.h │ │ ├── version.h │ │ ├── versioninfo.h │ │ ├── vidmode.h │ │ ├── vlbox.h │ │ ├── vms_x_fix.h │ │ ├── volume.h │ │ ├── vscroll.h │ │ ├── weakref.h │ │ ├── webview.h │ │ ├── webviewarchivehandler.h │ │ ├── webviewfshandler.h │ │ ├── wfstream.h │ │ ├── window.h │ │ ├── windowid.h │ │ ├── windowptr.h │ │ ├── withimages.h │ │ ├── wizard.h │ │ ├── wrapsizer.h │ │ ├── wupdlock.h │ │ ├── wx.h │ │ ├── wxchar.h │ │ ├── wxcrt.h │ │ ├── wxcrtbase.h │ │ ├── wxcrtvararg.h │ │ ├── wxhtml.h │ │ ├── wxprec.h │ │ ├── x11 │ │ ├── app.h │ │ ├── bitmap.h │ │ ├── brush.h │ │ ├── chkconf.h │ │ ├── clipbrd.h │ │ ├── colour.h │ │ ├── cursor.h │ │ ├── dataform.h │ │ ├── dataobj.h │ │ ├── dataobj2.h │ │ ├── dc.h │ │ ├── dcclient.h │ │ ├── dcmemory.h │ │ ├── dcprint.h │ │ ├── dcscreen.h │ │ ├── dnd.h │ │ ├── font.h │ │ ├── glcanvas.h │ │ ├── joystick.h │ │ ├── minifram.h │ │ ├── nanox │ │ │ └── X11 │ │ │ │ ├── Xatom.h │ │ │ │ ├── Xlib.h │ │ │ │ └── Xutil.h │ │ ├── palette.h │ │ ├── pen.h │ │ ├── popupwin.h │ │ ├── print.h │ │ ├── private.h │ │ ├── private │ │ │ └── wrapxkb.h │ │ ├── privx.h │ │ ├── region.h │ │ ├── reparent.h │ │ ├── textctrl.h │ │ ├── toplevel.h │ │ └── window.h │ │ ├── xlocale.h │ │ ├── xml │ │ └── xml.h │ │ ├── xpmdecod.h │ │ ├── xpmhand.h │ │ ├── xrc │ │ ├── xh_activityindicator.h │ │ ├── xh_all.h │ │ ├── xh_animatctrl.h │ │ ├── xh_auinotbk.h │ │ ├── xh_auitoolb.h │ │ ├── xh_bannerwindow.h │ │ ├── xh_bmp.h │ │ ├── xh_bmpbt.h │ │ ├── xh_bmpcbox.h │ │ ├── xh_bttn.h │ │ ├── xh_cald.h │ │ ├── xh_chckb.h │ │ ├── xh_chckl.h │ │ ├── xh_choic.h │ │ ├── xh_choicbk.h │ │ ├── xh_clrpicker.h │ │ ├── xh_cmdlinkbn.h │ │ ├── xh_collpane.h │ │ ├── xh_combo.h │ │ ├── xh_comboctrl.h │ │ ├── xh_datectrl.h │ │ ├── xh_dirpicker.h │ │ ├── xh_dlg.h │ │ ├── xh_editlbox.h │ │ ├── xh_filectrl.h │ │ ├── xh_filepicker.h │ │ ├── xh_fontpicker.h │ │ ├── xh_frame.h │ │ ├── xh_gauge.h │ │ ├── xh_gdctl.h │ │ ├── xh_grid.h │ │ ├── xh_html.h │ │ ├── xh_htmllbox.h │ │ ├── xh_hyperlink.h │ │ ├── xh_listb.h │ │ ├── xh_listbk.h │ │ ├── xh_listc.h │ │ ├── xh_mdi.h │ │ ├── xh_menu.h │ │ ├── xh_notbk.h │ │ ├── xh_odcombo.h │ │ ├── xh_panel.h │ │ ├── xh_propdlg.h │ │ ├── xh_radbt.h │ │ ├── xh_radbx.h │ │ ├── xh_ribbon.h │ │ ├── xh_richtext.h │ │ ├── xh_scrol.h │ │ ├── xh_scwin.h │ │ ├── xh_simplebook.h │ │ ├── xh_sizer.h │ │ ├── xh_slidr.h │ │ ├── xh_spin.h │ │ ├── xh_split.h │ │ ├── xh_srchctrl.h │ │ ├── xh_statbar.h │ │ ├── xh_stbmp.h │ │ ├── xh_stbox.h │ │ ├── xh_stlin.h │ │ ├── xh_sttxt.h │ │ ├── xh_text.h │ │ ├── xh_tglbtn.h │ │ ├── xh_timectrl.h │ │ ├── xh_toolb.h │ │ ├── xh_toolbk.h │ │ ├── xh_tree.h │ │ ├── xh_treebk.h │ │ ├── xh_unkwn.h │ │ ├── xh_wizrd.h │ │ ├── xmlres.h │ │ └── xmlreshandler.h │ │ ├── xti.h │ │ ├── xti2.h │ │ ├── xtictor.h │ │ ├── xtihandler.h │ │ ├── xtiprop.h │ │ ├── xtistrm.h │ │ ├── xtitypes.h │ │ ├── xtixml.h │ │ ├── zipstrm.h │ │ └── zstream.h │ ├── install-sh │ ├── interface │ ├── check_syntax.sh │ └── wx │ │ ├── aboutdlg.h │ │ ├── accel.h │ │ ├── access.h │ │ ├── activityindicator.h │ │ ├── addremovectrl.h │ │ ├── affinematrix2d.h │ │ ├── affinematrix2dbase.h │ │ ├── animate.h │ │ ├── any.h │ │ ├── anybutton.h │ │ ├── app.h │ │ ├── appprogress.h │ │ ├── apptrait.h │ │ ├── archive.h │ │ ├── arrstr.h │ │ ├── artprov.h │ │ ├── atomic.h │ │ ├── aui │ │ ├── auibar.h │ │ ├── auibook.h │ │ ├── dockart.h │ │ └── framemanager.h │ │ ├── bannerwindow.h │ │ ├── base64.h │ │ ├── bitmap.h │ │ ├── bmpbuttn.h │ │ ├── bmpcbox.h │ │ ├── bookctrl.h │ │ ├── brush.h │ │ ├── buffer.h │ │ ├── busyinfo.h │ │ ├── button.h │ │ ├── calctrl.h │ │ ├── caret.h │ │ ├── chartype.h │ │ ├── checkbox.h │ │ ├── checklst.h │ │ ├── choicdlg.h │ │ ├── choice.h │ │ ├── choicebk.h │ │ ├── clipbrd.h │ │ ├── clntdata.h │ │ ├── clrpicker.h │ │ ├── cmdline.h │ │ ├── cmdproc.h │ │ ├── cmndata.h │ │ ├── collheaderctrl.h │ │ ├── collpane.h │ │ ├── colordlg.h │ │ ├── colour.h │ │ ├── colourdata.h │ │ ├── combo.h │ │ ├── combobox.h │ │ ├── commandlinkbutton.h │ │ ├── config.h │ │ ├── containr.h │ │ ├── control.h │ │ ├── convauto.h │ │ ├── cpp.h │ │ ├── cshelp.h │ │ ├── ctrlsub.h │ │ ├── cursor.h │ │ ├── custombgwin.h │ │ ├── dataobj.h │ │ ├── dataview.h │ │ ├── datectrl.h │ │ ├── dateevt.h │ │ ├── datetime.h │ │ ├── datstrm.h │ │ ├── dc.h │ │ ├── dcbuffer.h │ │ ├── dcclient.h │ │ ├── dcgraph.h │ │ ├── dcmemory.h │ │ ├── dcmirror.h │ │ ├── dcprint.h │ │ ├── dcps.h │ │ ├── dcscreen.h │ │ ├── dcsvg.h │ │ ├── dde.h │ │ ├── debug.h │ │ ├── debugrpt.h │ │ ├── defs.h │ │ ├── dialog.h │ │ ├── dialup.h │ │ ├── dir.h │ │ ├── dirctrl.h │ │ ├── dirdlg.h │ │ ├── display.h │ │ ├── dnd.h │ │ ├── docmdi.h │ │ ├── docview.h │ │ ├── dragimag.h │ │ ├── dynarray.h │ │ ├── dynlib.h │ │ ├── editlbox.h │ │ ├── encconv.h │ │ ├── event.h │ │ ├── eventfilter.h │ │ ├── evtloop.h │ │ ├── fdrepdlg.h │ │ ├── ffile.h │ │ ├── file.h │ │ ├── fileconf.h │ │ ├── filectrl.h │ │ ├── filedlg.h │ │ ├── filefn.h │ │ ├── filehistory.h │ │ ├── filename.h │ │ ├── filepicker.h │ │ ├── filesys.h │ │ ├── font.h │ │ ├── fontdata.h │ │ ├── fontdlg.h │ │ ├── fontenum.h │ │ ├── fontmap.h │ │ ├── fontpicker.h │ │ ├── fontutil.h │ │ ├── frame.h │ │ ├── fs_arc.h │ │ ├── fs_filter.h │ │ ├── fs_inet.h │ │ ├── fs_mem.h │ │ ├── fswatcher.h │ │ ├── gauge.h │ │ ├── gbsizer.h │ │ ├── gdicmn.h │ │ ├── gdiobj.h │ │ ├── generic │ │ ├── aboutdlgg.h │ │ └── helpext.h │ │ ├── geometry.h │ │ ├── glcanvas.h │ │ ├── graphics.h │ │ ├── grid.h │ │ ├── hash.h │ │ ├── hashmap.h │ │ ├── hashset.h │ │ ├── headercol.h │ │ ├── headerctrl.h │ │ ├── help.h │ │ ├── html │ │ ├── helpctrl.h │ │ ├── helpdata.h │ │ ├── helpdlg.h │ │ ├── helpfrm.h │ │ ├── helpwnd.h │ │ ├── htmlcell.h │ │ ├── htmldefs.h │ │ ├── htmlfilt.h │ │ ├── htmlpars.h │ │ ├── htmltag.h │ │ ├── htmlwin.h │ │ ├── htmprint.h │ │ ├── webkit.h │ │ └── winpars.h │ │ ├── htmllbox.h │ │ ├── hyperlink.h │ │ ├── icon.h │ │ ├── iconbndl.h │ │ ├── iconloc.h │ │ ├── image.h │ │ ├── imaglist.h │ │ ├── infobar.h │ │ ├── init.h │ │ ├── intl.h │ │ ├── ipc.h │ │ ├── ipcbase.h │ │ ├── joystick.h │ │ ├── kbdstate.h │ │ ├── language.h │ │ ├── layout.h │ │ ├── laywin.h │ │ ├── link.h │ │ ├── list.h │ │ ├── listbook.h │ │ ├── listbox.h │ │ ├── listctrl.h │ │ ├── log.h │ │ ├── longlong.h │ │ ├── math.h │ │ ├── mdi.h │ │ ├── mediactrl.h │ │ ├── memory.h │ │ ├── menu.h │ │ ├── menuitem.h │ │ ├── metafile.h │ │ ├── mimetype.h │ │ ├── minifram.h │ │ ├── modalhook.h │ │ ├── module.h │ │ ├── mousemanager.h │ │ ├── mousestate.h │ │ ├── msgdlg.h │ │ ├── msgout.h │ │ ├── msgqueue.h │ │ ├── mstream.h │ │ ├── msw │ │ ├── ole │ │ │ ├── activex.h │ │ │ └── automtn.h │ │ ├── regconf.h │ │ └── registry.h │ │ ├── nativewin.h │ │ ├── nonownedwnd.h │ │ ├── notebook.h │ │ ├── notifmsg.h │ │ ├── numdlg.h │ │ ├── numformatter.h │ │ ├── object.h │ │ ├── odcombo.h │ │ ├── overlay.h │ │ ├── palette.h │ │ ├── panel.h │ │ ├── pen.h │ │ ├── persist.h │ │ ├── persist │ │ ├── bookctrl.h │ │ ├── toplevel.h │ │ ├── treebook.h │ │ └── window.h │ │ ├── pickerbase.h │ │ ├── platform.h │ │ ├── platinfo.h │ │ ├── popupwin.h │ │ ├── position.h │ │ ├── power.h │ │ ├── preferences.h │ │ ├── print.h │ │ ├── printdlg.h │ │ ├── process.h │ │ ├── progdlg.h │ │ ├── propdlg.h │ │ ├── propgrid │ │ ├── editors.h │ │ ├── manager.h │ │ ├── property.h │ │ ├── propgrid.h │ │ ├── propgridiface.h │ │ └── propgridpagestate.h │ │ ├── protocol │ │ ├── ftp.h │ │ ├── http.h │ │ ├── log.h │ │ └── protocol.h │ │ ├── quantize.h │ │ ├── radiobox.h │ │ ├── radiobut.h │ │ ├── rawbmp.h │ │ ├── rearrangectrl.h │ │ ├── recguard.h │ │ ├── regex.h │ │ ├── region.h │ │ ├── renderer.h │ │ ├── ribbon │ │ ├── art.h │ │ ├── bar.h │ │ ├── buttonbar.h │ │ ├── control.h │ │ ├── gallery.h │ │ ├── page.h │ │ ├── panel.h │ │ └── toolbar.h │ │ ├── richmsgdlg.h │ │ ├── richtext │ │ ├── richtextbuffer.h │ │ ├── richtextctrl.h │ │ ├── richtextformatdlg.h │ │ ├── richtexthtml.h │ │ ├── richtextprint.h │ │ ├── richtextstyledlg.h │ │ ├── richtextstyles.h │ │ ├── richtextsymboldlg.h │ │ └── richtextxml.h │ │ ├── richtooltip.h │ │ ├── sashwin.h │ │ ├── sckipc.h │ │ ├── sckstrm.h │ │ ├── scopedarray.h │ │ ├── scopedptr.h │ │ ├── scopeguard.h │ │ ├── scrolbar.h │ │ ├── scrolwin.h │ │ ├── settings.h │ │ ├── sharedptr.h │ │ ├── simplebook.h │ │ ├── sizer.h │ │ ├── slider.h │ │ ├── snglinst.h │ │ ├── socket.h │ │ ├── sound.h │ │ ├── spinbutt.h │ │ ├── spinctrl.h │ │ ├── splash.h │ │ ├── splitter.h │ │ ├── srchctrl.h │ │ ├── sstream.h │ │ ├── stack.h │ │ ├── stackwalk.h │ │ ├── statbmp.h │ │ ├── statbox.h │ │ ├── statline.h │ │ ├── stattext.h │ │ ├── statusbr.h │ │ ├── stc │ │ └── stc.h │ │ ├── stdpaths.h │ │ ├── stdstream.h │ │ ├── stockitem.h │ │ ├── stopwatch.h │ │ ├── strconv.h │ │ ├── stream.h │ │ ├── string.h │ │ ├── sysopt.h │ │ ├── systhemectrl.h │ │ ├── tarstrm.h │ │ ├── taskbar.h │ │ ├── taskbarbutton.h │ │ ├── textcompleter.h │ │ ├── textctrl.h │ │ ├── textdlg.h │ │ ├── textentry.h │ │ ├── textfile.h │ │ ├── textwrapper.h │ │ ├── tglbtn.h │ │ ├── thread.h │ │ ├── time.h │ │ ├── timectrl.h │ │ ├── timer.h │ │ ├── tipdlg.h │ │ ├── tipwin.h │ │ ├── tls.h │ │ ├── tokenzr.h │ │ ├── toolbar.h │ │ ├── toolbook.h │ │ ├── tooltip.h │ │ ├── toplevel.h │ │ ├── tracker.h │ │ ├── translation.h │ │ ├── treebase.h │ │ ├── treebook.h │ │ ├── treectrl.h │ │ ├── treelist.h │ │ ├── txtstrm.h │ │ ├── uiaction.h │ │ ├── unichar.h │ │ ├── uri.h │ │ ├── url.h │ │ ├── ustring.h │ │ ├── utils.h │ │ ├── valgen.h │ │ ├── validate.h │ │ ├── valnum.h │ │ ├── valtext.h │ │ ├── variant.h │ │ ├── vector.h │ │ ├── version.h │ │ ├── versioninfo.h │ │ ├── vidmode.h │ │ ├── vlbox.h │ │ ├── volume.h │ │ ├── vscroll.h │ │ ├── weakref.h │ │ ├── webview.h │ │ ├── webviewarchivehandler.h │ │ ├── webviewfshandler.h │ │ ├── wfstream.h │ │ ├── window.h │ │ ├── windowid.h │ │ ├── windowptr.h │ │ ├── withimages.h │ │ ├── wizard.h │ │ ├── wrapsizer.h │ │ ├── wupdlock.h │ │ ├── wxcrt.h │ │ ├── xlocale.h │ │ ├── xml │ │ └── xml.h │ │ ├── xrc │ │ ├── xh_sizer.h │ │ └── xmlres.h │ │ ├── zipstrm.h │ │ └── zstream.h │ ├── lib │ ├── VMS_GTK2.OPT │ ├── VMS_X11_UNIV.OPT │ ├── abicheck.sh │ ├── vms.opt │ └── vms_gtk.opt │ ├── locale │ ├── Makefile │ ├── af.po │ ├── an.po │ ├── ar.po │ ├── ca.po │ ├── ca@valencia.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── eu.po │ ├── fi.po │ ├── fr.po │ ├── gl_ES.po │ ├── hi.po │ ├── hu.po │ ├── id.po │ ├── it.po │ ├── ja.po │ ├── ko_KR.po │ ├── lt.po │ ├── lv.po │ ├── ms.po │ ├── msw │ │ └── it.po │ ├── nb.po │ ├── ne.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sk.po │ ├── sl.po │ ├── sq.po │ ├── sv.po │ ├── ta.po │ ├── tr.po │ ├── uk.po │ ├── vi.po │ ├── wxstd.pot │ ├── zh_CN.po │ └── zh_TW.po │ ├── misc │ ├── gdb │ │ └── print.py │ ├── languages │ │ ├── README │ │ ├── genlang.py │ │ └── langtabl.txt │ ├── msvc │ │ ├── autoexp.inc │ │ ├── wxWidgets.2013.natvis │ │ └── wxWidgets.natvis │ ├── schema │ │ ├── README │ │ ├── xrc_schema.rnc │ │ └── xrc_schema_builtin_only.rnc │ ├── scripts │ │ ├── check_unused_headers │ │ ├── clean_patch │ │ ├── ctags.ignore │ │ ├── inc_release │ │ ├── makegtktags │ │ ├── makemswtags.bat │ │ ├── makeosxtags.sh │ │ ├── makeunivtags.bat │ │ ├── makeunixtags.sh │ │ ├── png2c.py │ │ ├── set_install_name │ │ └── show_dll_exports │ ├── theme_test │ │ ├── Makefile │ │ └── test.c │ └── unictabl │ │ ├── README │ │ ├── mappings │ │ ├── 8859-1.TXT │ │ ├── 8859-10.TXT │ │ ├── 8859-13.TXT │ │ ├── 8859-14.TXT │ │ ├── 8859-15.TXT │ │ ├── 8859-2.TXT │ │ ├── 8859-3.TXT │ │ ├── 8859-4.TXT │ │ ├── 8859-5.TXT │ │ ├── 8859-6.TXT │ │ ├── 8859-7.TXT │ │ ├── 8859-8.TXT │ │ ├── 8859-9.TXT │ │ ├── CP1250.TXT │ │ ├── CP1251.TXT │ │ ├── CP1252.TXT │ │ ├── CP1253.TXT │ │ ├── CP1254.TXT │ │ ├── CP1255.TXT │ │ ├── CP1256.TXT │ │ ├── CP1257.TXT │ │ ├── CP866.txt │ │ └── KOI8-R.TXT │ │ ├── mk_ctable.c │ │ ├── mk_encodings.sh │ │ ├── mk_fallbacks.sh │ │ └── regenerate.sh │ ├── mkinstalldirs │ ├── regen │ ├── samples │ ├── Info.plist │ ├── Makefile.in │ ├── access │ │ ├── Makefile.in │ │ ├── access.bkl │ │ ├── access_vc7.vcproj │ │ ├── access_vc8.vcproj │ │ ├── access_vc9.vcproj │ │ ├── accesstest.cpp │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── animate │ │ ├── Makefile.in │ │ ├── anitest.bkl │ │ ├── anitest.cpp │ │ ├── anitest.h │ │ ├── anitest_vc7.vcproj │ │ ├── anitest_vc8.vcproj │ │ ├── anitest_vc9.vcproj │ │ ├── descrip.mms │ │ ├── hourglass.ani │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ └── throbber.gif │ ├── artprov │ │ ├── Makefile.in │ │ ├── artbrows.cpp │ │ ├── artbrows.h │ │ ├── artprov.bkl │ │ ├── artprov_vc7.vcproj │ │ ├── artprov_vc8.vcproj │ │ ├── artprov_vc9.vcproj │ │ ├── arttest.cpp │ │ ├── descrip.mms │ │ ├── error.xpm │ │ ├── info.xpm │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── null.xpm │ │ ├── question.xpm │ │ └── warning.xpm │ ├── aui │ │ ├── Makefile.in │ │ ├── auidemo.bkl │ │ ├── auidemo.cpp │ │ ├── auidemo_vc7.vcproj │ │ ├── auidemo_vc8.vcproj │ │ ├── auidemo_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── calendar │ │ ├── Makefile.in │ │ ├── calendar.bkl │ │ ├── calendar.cpp │ │ ├── calendar.rc │ │ ├── calendar_vc7.vcproj │ │ ├── calendar_vc8.vcproj │ │ ├── calendar_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── caret │ │ ├── Makefile.in │ │ ├── caret.bkl │ │ ├── caret.cpp │ │ ├── caret_vc7.vcproj │ │ ├── caret_vc8.vcproj │ │ ├── caret_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── clipboard │ │ ├── Makefile.in │ │ ├── clipboard.bkl │ │ ├── clipboard.cpp │ │ ├── clipboard_vc7.vcproj │ │ ├── clipboard_vc8.vcproj │ │ ├── clipboard_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── collpane │ │ ├── Makefile.in │ │ ├── collpane.bkl │ │ ├── collpane.cpp │ │ ├── collpane_vc7.vcproj │ │ ├── collpane_vc8.vcproj │ │ ├── collpane_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── combo │ │ ├── Makefile.in │ │ ├── combo.bkl │ │ ├── combo.cpp │ │ ├── combo_vc7.vcproj │ │ ├── combo_vc8.vcproj │ │ ├── combo_vc9.vcproj │ │ ├── descrip.mms │ │ ├── dropbuth.png │ │ ├── dropbutn.png │ │ ├── dropbutp.png │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── config │ │ ├── Makefile.in │ │ ├── config.bkl │ │ ├── config_vc7.vcproj │ │ ├── config_vc8.vcproj │ │ ├── config_vc9.vcproj │ │ ├── conftest.cpp │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── console │ │ ├── Makefile.in │ │ ├── console.bkl │ │ ├── console.cpp │ │ ├── console_vc7.vcproj │ │ ├── console_vc8.vcproj │ │ ├── console_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── dataview │ │ ├── Makefile.in │ │ ├── dataview.bkl │ │ ├── dataview.cpp │ │ ├── dataview_vc7.vcproj │ │ ├── dataview_vc8.vcproj │ │ ├── dataview_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── mymodels.cpp │ │ ├── mymodels.h │ │ ├── null.xpm │ │ └── wx_small.xpm │ ├── debugrpt │ │ ├── Makefile.in │ │ ├── debugrpt.bkl │ │ ├── debugrpt.cpp │ │ ├── debugrpt_vc7.vcproj │ │ ├── debugrpt_vc8.vcproj │ │ ├── debugrpt_vc9.vcproj │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── dialogs │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── dialogs.bkl │ │ ├── dialogs.cpp │ │ ├── dialogs.h │ │ ├── dialogs_vc7.vcproj │ │ ├── dialogs_vc8.vcproj │ │ ├── dialogs_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── tip.xpm │ │ └── tips.txt │ ├── dialup │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── dialup.bkl │ │ ├── dialup_vc7.vcproj │ │ ├── dialup_vc8.vcproj │ │ ├── dialup_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ └── nettest.cpp │ ├── display │ │ ├── Makefile.in │ │ ├── display.bkl │ │ ├── display.cpp │ │ ├── display_vc7.vcproj │ │ ├── display_vc8.vcproj │ │ ├── display_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── dll │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── dll.bkl │ │ ├── dll_vc7_my_dll.vcproj │ │ ├── dll_vc7_sdk_exe.vcproj │ │ ├── dll_vc7_wx_exe.vcproj │ │ ├── dll_vc8_my_dll.vcproj │ │ ├── dll_vc8_sdk_exe.vcproj │ │ ├── dll_vc8_wx_exe.vcproj │ │ ├── dll_vc9_my_dll.vcproj │ │ ├── dll_vc9_sdk_exe.vcproj │ │ ├── dll_vc9_wx_exe.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── my_dll.cpp │ │ ├── my_dll.h │ │ ├── sdk_exe.cpp │ │ └── wx_exe.cpp │ ├── dnd │ │ ├── Makefile.in │ │ ├── d_and_d.txt │ │ ├── descrip.mms │ │ ├── dnd.bkl │ │ ├── dnd.cpp │ │ ├── dnd.rc │ │ ├── dnd_copy.cur │ │ ├── dnd_copy.xpm │ │ ├── dnd_move.cur │ │ ├── dnd_move.xpm │ │ ├── dnd_none.cur │ │ ├── dnd_none.xpm │ │ ├── dnd_vc7.vcproj │ │ ├── dnd_vc8.vcproj │ │ ├── dnd_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ └── wxwin.png │ ├── docview │ │ ├── Info.plist │ │ ├── Info.plist.in │ │ ├── Makefile.in │ │ ├── chart.icns │ │ ├── chart.ico │ │ ├── chart.r │ │ ├── chart.xpm │ │ ├── descrip.mms │ │ ├── doc.cpp │ │ ├── doc.h │ │ ├── doc.icns │ │ ├── doc.ico │ │ ├── doc.r │ │ ├── doc.xpm │ │ ├── docview.bkl │ │ ├── docview.cpp │ │ ├── docview.h │ │ ├── docview.r │ │ ├── docview.rc │ │ ├── docview_vc7.vcproj │ │ ├── docview_vc8.vcproj │ │ ├── docview_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── notepad.icns │ │ ├── notepad.ico │ │ ├── notepad.xpm │ │ ├── view.cpp │ │ └── view.h │ ├── dragimag │ │ ├── Makefile.in │ │ ├── backgrnd.png │ │ ├── descrip.mms │ │ ├── dragicon.ico │ │ ├── dragicon.xpm │ │ ├── dragimag.bkl │ │ ├── dragimag.cpp │ │ ├── dragimag.h │ │ ├── dragimag.rc │ │ ├── dragimag_vc7.vcproj │ │ ├── dragimag_vc8.vcproj │ │ ├── dragimag_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── shape01.png │ │ ├── shape02.png │ │ └── shape03.png │ ├── drawing │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── drawing.bkl │ │ ├── drawing.cpp │ │ ├── drawing_vc7.vcproj │ │ ├── drawing_vc8.vcproj │ │ ├── drawing_vc9.vcproj │ │ ├── image.bmp │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── mask.bmp │ │ ├── pat35.bmp │ │ ├── pat36.bmp │ │ ├── pat4.bmp │ │ └── smile.xpm │ ├── erase │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── erase.bkl │ │ ├── erase.cpp │ │ ├── erase_vc7.vcproj │ │ ├── erase_vc8.vcproj │ │ ├── erase_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── event │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── event.bkl │ │ ├── event.cpp │ │ ├── event_vc7.vcproj │ │ ├── event_vc8.vcproj │ │ ├── event_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── except │ │ ├── Makefile.in │ │ ├── except.bkl │ │ ├── except.cpp │ │ ├── except_vc7.vcproj │ │ ├── except_vc8.vcproj │ │ ├── except_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── exec │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── exec.bkl │ │ ├── exec.cpp │ │ ├── exec_vc7.vcproj │ │ ├── exec_vc8.vcproj │ │ ├── exec_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── flash │ │ ├── animation.swf │ │ ├── flash.bkl │ │ ├── flash.cpp │ │ ├── flash_vc7.vcproj │ │ ├── flash_vc8.vcproj │ │ ├── flash_vc9.vcproj │ │ ├── form.mxml │ │ ├── form.swf │ │ └── makefile.vc │ ├── font │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── font.bkl │ │ ├── font.cpp │ │ ├── font_vc7.vcproj │ │ ├── font_vc8.vcproj │ │ ├── font_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── fswatcher │ │ ├── Makefile.in │ │ ├── fswatcher.bkl │ │ ├── fswatcher.cpp │ │ ├── fswatcher_vc7.vcproj │ │ ├── fswatcher_vc8.vcproj │ │ ├── fswatcher_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── grid │ │ ├── Makefile.in │ │ ├── bitmap1.bmp │ │ ├── bitmap2.bmp │ │ ├── grid.bkl │ │ ├── grid_vc7.vcproj │ │ ├── grid_vc8.vcproj │ │ ├── grid_vc9.vcproj │ │ ├── griddemo.cpp │ │ ├── griddemo.h │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── help │ │ ├── Makefile.in │ │ ├── back.gif │ │ ├── bullet.bmp │ │ ├── contents.gif │ │ ├── cshelp.txt │ │ ├── demo.cpp │ │ ├── doc.chm │ │ ├── doc.cnt │ │ ├── doc.h │ │ ├── doc.hhc │ │ ├── doc.hhk │ │ ├── doc.hhp │ │ ├── doc.hlp │ │ ├── doc.hpj │ │ ├── doc.tex │ │ ├── doc.zip │ │ ├── doc │ │ │ ├── ClassGraph.class │ │ │ ├── ClassGraphPanel.class │ │ │ ├── ClassLayout.class │ │ │ ├── HIER.html │ │ │ ├── HIERjava.html │ │ │ ├── NavigatorButton.class │ │ │ ├── USE_HELP.html │ │ │ ├── aindex.html │ │ │ ├── down.gif │ │ │ ├── dxxgifs.tex │ │ │ ├── icon1.gif │ │ │ ├── icon2.gif │ │ │ ├── index.html │ │ │ ├── logo.gif │ │ │ ├── wx.htm │ │ │ ├── wx204.htm │ │ │ ├── wx34.htm │ │ │ ├── wxExtHelpController.html │ │ │ └── wxhelp.map │ │ ├── forward.gif │ │ ├── help.bkl │ │ ├── help_vc7.vcproj │ │ ├── help_vc8.vcproj │ │ ├── help_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── tex2rtf.ini │ │ └── up.gif │ ├── htlbox │ │ ├── Makefile.in │ │ ├── htlbox.bkl │ │ ├── htlbox.cpp │ │ ├── htlbox_vc7.vcproj │ │ ├── htlbox_vc8.vcproj │ │ ├── htlbox_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ └── results │ ├── html │ │ ├── Makefile.in │ │ ├── about │ │ │ ├── Makefile.in │ │ │ ├── about.bkl │ │ │ ├── about.cpp │ │ │ ├── about_vc7.vcproj │ │ │ ├── about_vc8.vcproj │ │ │ ├── about_vc9.vcproj │ │ │ ├── data │ │ │ │ ├── about.htm │ │ │ │ └── logo.png │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ └── makefile.vc │ │ ├── help │ │ │ ├── Makefile.in │ │ │ ├── help.bkl │ │ │ ├── help.cpp │ │ │ ├── help_vc7.vcproj │ │ │ ├── help_vc8.vcproj │ │ │ ├── help_vc9.vcproj │ │ │ ├── helpfiles │ │ │ │ ├── Index.hhk │ │ │ │ ├── another.hhc │ │ │ │ ├── another.hhp │ │ │ │ ├── another.htm │ │ │ │ ├── book1.htm │ │ │ │ ├── book2.htm │ │ │ │ ├── contents.hhc │ │ │ │ ├── main.htm │ │ │ │ ├── page2-b.htm │ │ │ │ └── testing.hhp │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ └── makefile.vc │ │ ├── helpview │ │ │ ├── Makefile.in │ │ │ ├── helpview.bkl │ │ │ ├── helpview.cpp │ │ │ ├── helpview_vc7.vcproj │ │ │ ├── helpview_vc8.vcproj │ │ │ ├── helpview_vc9.vcproj │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ └── test.zip │ │ ├── html_samples.bkl │ │ ├── htmlctrl │ │ │ ├── Makefile.in │ │ │ ├── htmlctrl.bkl │ │ │ ├── htmlctrl.cpp │ │ │ └── makefile.unx │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── printing │ │ │ ├── Makefile.in │ │ │ ├── logo6.gif │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ ├── printing.bkl │ │ │ ├── printing.cpp │ │ │ ├── printing_vc7.vcproj │ │ │ ├── printing_vc8.vcproj │ │ │ ├── printing_vc9.vcproj │ │ │ └── test.htm │ │ ├── test │ │ │ ├── 8859_2.htm │ │ │ ├── Makefile.in │ │ │ ├── cp1250.htm │ │ │ ├── foo.png │ │ │ ├── i18n.gif │ │ │ ├── imagemap.htm │ │ │ ├── imagemap.png │ │ │ ├── listtest.htm │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ ├── pic.png │ │ │ ├── pic2.bmp │ │ │ ├── regres.htm │ │ │ ├── subsup.html │ │ │ ├── tables.htm │ │ │ ├── test.bkl │ │ │ ├── test.cpp │ │ │ ├── test.htm │ │ │ ├── test_vc7.vcproj │ │ │ ├── test_vc8.vcproj │ │ │ └── test_vc9.vcproj │ │ ├── virtual │ │ │ ├── Makefile.in │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ ├── start.htm │ │ │ ├── virtual.bkl │ │ │ ├── virtual.cpp │ │ │ ├── virtual_vc7.vcproj │ │ │ ├── virtual_vc8.vcproj │ │ │ └── virtual_vc9.vcproj │ │ ├── widget │ │ │ ├── Makefile.in │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ ├── start.htm │ │ │ ├── widget.bkl │ │ │ ├── widget.cpp │ │ │ ├── widget_vc7.vcproj │ │ │ ├── widget_vc8.vcproj │ │ │ └── widget_vc9.vcproj │ │ └── zip │ │ │ ├── Makefile.in │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ ├── pages.zip │ │ │ ├── start.htm │ │ │ ├── zip.bkl │ │ │ ├── zip.cpp │ │ │ ├── zip_vc7.vcproj │ │ │ ├── zip_vc8.vcproj │ │ │ └── zip_vc9.vcproj │ ├── image │ │ ├── Makefile.in │ │ ├── canvas.cpp │ │ ├── canvas.h │ │ ├── cmyk.jpg │ │ ├── cursor.png │ │ ├── cursor_png.c │ │ ├── descrip.mms │ │ ├── horse.bmp │ │ ├── horse.cur │ │ ├── horse.gif │ │ ├── horse.ico │ │ ├── horse.jpg │ │ ├── horse.pcx │ │ ├── horse.png │ │ ├── horse.pnm │ │ ├── horse.tga │ │ ├── horse.tif │ │ ├── horse.xpm │ │ ├── horse3.ani │ │ ├── horse_ag.pnm │ │ ├── horse_rg.pnm │ │ ├── image.bkl │ │ ├── image.cpp │ │ ├── image.rc │ │ ├── image_vc7.vcproj │ │ ├── image_vc8.vcproj │ │ ├── image_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── smile.xbm │ │ ├── smile.xpm │ │ └── toucan.png │ ├── internat │ │ ├── Makefile.in │ │ ├── ar │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── bg │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── cs │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── de │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── fr │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── internat.bkl │ │ ├── internat.cpp │ │ ├── internat_vc7.vcproj │ │ ├── internat_vc8.vcproj │ │ ├── internat_vc9.vcproj │ │ ├── it │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── ja │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── ja_JP.EUC-JP │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── ka │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── pl │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ ├── readme.txt │ │ ├── ru │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ └── sv │ │ │ ├── internat.mo │ │ │ └── internat.po │ ├── ipc │ │ ├── Makefile.in │ │ ├── baseclient.cpp │ │ ├── baseserver.cpp │ │ ├── client.cpp │ │ ├── client.h │ │ ├── connection.h │ │ ├── ipc.bkl │ │ ├── ipc_vc7_baseipcclient.vcproj │ │ ├── ipc_vc7_baseipcserver.vcproj │ │ ├── ipc_vc7_ipcclient.vcproj │ │ ├── ipc_vc7_ipcserver.vcproj │ │ ├── ipc_vc8_baseipcclient.vcproj │ │ ├── ipc_vc8_baseipcserver.vcproj │ │ ├── ipc_vc8_ipcclient.vcproj │ │ ├── ipc_vc8_ipcserver.vcproj │ │ ├── ipc_vc9_baseipcclient.vcproj │ │ ├── ipc_vc9_baseipcserver.vcproj │ │ ├── ipc_vc9_ipcclient.vcproj │ │ ├── ipc_vc9_ipcserver.vcproj │ │ ├── ipcsetup.h │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── server.cpp │ │ └── server.h │ ├── joytest │ │ ├── Makefile.in │ │ ├── buttonpress.wav │ │ ├── joytest.bkl │ │ ├── joytest.cpp │ │ ├── joytest.h │ │ ├── joytest_vc7.vcproj │ │ ├── joytest_vc8.vcproj │ │ ├── joytest_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── keyboard │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── keyboard.bkl │ │ ├── keyboard.cpp │ │ ├── keyboard_vc7.vcproj │ │ ├── keyboard_vc8.vcproj │ │ ├── keyboard_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── layout │ │ ├── Makefile.in │ │ ├── expt.cpp │ │ ├── layout.bkl │ │ ├── layout.cpp │ │ ├── layout.h │ │ ├── layout_vc7.vcproj │ │ ├── layout_vc8.vcproj │ │ ├── layout_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ └── makefile.vms │ ├── listctrl │ │ ├── Makefile.in │ │ ├── bitmaps │ │ │ ├── small1.ico │ │ │ ├── small1.xpm │ │ │ ├── toolbrai.ico │ │ │ ├── toolbrai.xpm │ │ │ ├── toolchar.ico │ │ │ ├── toolchar.xpm │ │ │ ├── toolchec.ico │ │ │ ├── toolchec.xpm │ │ │ ├── tooldata.ico │ │ │ ├── tooldata.xpm │ │ │ ├── toolgame.ico │ │ │ ├── toolgame.xpm │ │ │ ├── toolnote.ico │ │ │ ├── toolnote.xpm │ │ │ ├── tooltime.ico │ │ │ ├── tooltime.xpm │ │ │ ├── tooltodo.ico │ │ │ ├── tooltodo.xpm │ │ │ ├── toolword.ico │ │ │ └── toolword.xpm │ │ ├── listctrl.bkl │ │ ├── listctrl_vc7.vcproj │ │ ├── listctrl_vc8.vcproj │ │ ├── listctrl_vc9.vcproj │ │ ├── listtest.cpp │ │ ├── listtest.h │ │ ├── listtest.rc │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── makefile.bcc │ ├── makefile.gcc │ ├── makefile.vc │ ├── mdi │ │ ├── Makefile.in │ │ ├── bitmaps │ │ │ ├── copy.xpm │ │ │ ├── cut.xpm │ │ │ ├── help.xpm │ │ │ ├── new.xpm │ │ │ ├── open.xpm │ │ │ ├── paste.xpm │ │ │ ├── preview.xpm │ │ │ ├── print.xpm │ │ │ └── save.xpm │ │ ├── chart.ico │ │ ├── chart.xpm │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── mdi.bkl │ │ ├── mdi.cpp │ │ ├── mdi.h │ │ ├── mdi.rc │ │ ├── mdi_vc7.vcproj │ │ ├── mdi_vc8.vcproj │ │ └── mdi_vc9.vcproj │ ├── mediaplayer │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── mediaplayer.bkl │ │ ├── mediaplayer.cpp │ │ ├── mediaplayer_vc7.vcproj │ │ ├── mediaplayer_vc8.vcproj │ │ └── mediaplayer_vc9.vcproj │ ├── memcheck │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── memcheck.bkl │ │ ├── memcheck.cpp │ │ ├── memcheck_vc7.vcproj │ │ ├── memcheck_vc8.vcproj │ │ └── memcheck_vc9.vcproj │ ├── menu │ │ ├── Makefile.in │ │ ├── copy.xpm │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── menu.bkl │ │ ├── menu.cpp │ │ ├── menu_vc7.vcproj │ │ ├── menu_vc8.vcproj │ │ └── menu_vc9.vcproj │ ├── mfc │ │ ├── makefile.vc │ │ ├── mfc.bkl │ │ ├── mfc_vc7.vcproj │ │ ├── mfc_vc8.vcproj │ │ ├── mfc_vc9.vcproj │ │ ├── mfctest.cpp │ │ ├── mfctest.h │ │ ├── mfctest.ico │ │ ├── mfctest.rc │ │ ├── resource.h │ │ └── stdafx.h │ ├── minimal │ │ ├── Info_cocoa.plist │ │ ├── Info_iphone.plist │ │ ├── Makefile.in │ │ ├── borland.bdsproj │ │ ├── borland_ide.cpp │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── minimal.bkl │ │ ├── minimal.cpp │ │ ├── minimal.plc │ │ ├── minimal.vcxproj │ │ ├── minimal.vcxproj.filters │ │ ├── minimal_cocoa.xcodeproj │ │ │ └── project.pbxproj │ │ ├── minimal_iphone.xcodeproj │ │ │ └── project.pbxproj │ │ ├── minimal_vc10.sln │ │ ├── minimal_vc11.sln │ │ ├── minimal_vc12.sln │ │ ├── minimal_vc14.sln │ │ ├── minimal_vc7.vcproj │ │ ├── minimal_vc8.vcproj │ │ ├── minimal_vc9.vcproj │ │ └── sample.icns │ ├── nativdlg │ │ ├── Makefile.in │ │ ├── dialog1.rc │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── makefile.vms │ │ ├── nativdlg.bkl │ │ ├── nativdlg.cpp │ │ ├── nativdlg.h │ │ ├── nativdlg.rc │ │ ├── nativdlg_vc7.vcproj │ │ ├── nativdlg_vc8.vcproj │ │ ├── nativdlg_vc9.vcproj │ │ └── resource.h │ ├── notebook │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── notebook.bkl │ │ ├── notebook.cpp │ │ ├── notebook.h │ │ ├── notebook_vc7.vcproj │ │ ├── notebook_vc8.vcproj │ │ └── notebook_vc9.vcproj │ ├── oleauto │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── oleauto.bkl │ │ ├── oleauto.cpp │ │ ├── oleauto_vc7.vcproj │ │ ├── oleauto_vc8.vcproj │ │ └── oleauto_vc9.vcproj │ ├── opengl │ │ ├── Makefile.in │ │ ├── cube │ │ │ ├── Makefile.in │ │ │ ├── cube.bkl │ │ │ ├── cube.cpp │ │ │ ├── cube.h │ │ │ ├── cube_vc7.vcproj │ │ │ ├── cube_vc8.vcproj │ │ │ ├── cube_vc9.vcproj │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ └── makefile.vc │ │ ├── isosurf │ │ │ ├── Makefile.in │ │ │ ├── isosurf.bkl │ │ │ ├── isosurf.cpp │ │ │ ├── isosurf.dat.gz │ │ │ ├── isosurf.h │ │ │ ├── isosurf_vc7.vcproj │ │ │ ├── isosurf_vc8.vcproj │ │ │ ├── isosurf_vc9.vcproj │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ └── makefile.vc │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── opengl_samples.bkl │ │ ├── penguin │ │ │ ├── Makefile.in │ │ │ ├── dxfrenderer.cpp │ │ │ ├── dxfrenderer.h │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ ├── penguin.bkl │ │ │ ├── penguin.cpp │ │ │ ├── penguin.dxf.gz │ │ │ ├── penguin.h │ │ │ ├── penguin_vc7.vcproj │ │ │ ├── penguin_vc8.vcproj │ │ │ ├── penguin_vc9.vcproj │ │ │ ├── trackball.c │ │ │ └── trackball.h │ │ └── pyramid │ │ │ ├── Makefile.in │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.unx │ │ │ ├── makefile.vc │ │ │ ├── mathstuff.cpp │ │ │ ├── mathstuff.h │ │ │ ├── oglpfuncs.cpp │ │ │ ├── oglpfuncs.h │ │ │ ├── oglstuff.cpp │ │ │ ├── oglstuff.h │ │ │ ├── pyramid.bkl │ │ │ ├── pyramid.cpp │ │ │ ├── pyramid.h │ │ │ ├── pyramid_vc7.vcproj │ │ │ ├── pyramid_vc8.vcproj │ │ │ └── pyramid_vc9.vcproj │ ├── ownerdrw │ │ ├── Makefile.in │ │ ├── bell.bmp │ │ ├── info.bmp │ │ ├── info_mono.bmp │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── nosound.bmp │ │ ├── nosound.png │ │ ├── ownerdrw.bkl │ │ ├── ownerdrw.cpp │ │ ├── ownerdrw.rc │ │ ├── ownerdrw_vc7.vcproj │ │ ├── ownerdrw_vc8.vcproj │ │ ├── ownerdrw_vc9.vcproj │ │ ├── sound.bmp │ │ └── sound.png │ ├── popup │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── popup.bkl │ │ ├── popup.cpp │ │ ├── popup_vc7.vcproj │ │ ├── popup_vc8.vcproj │ │ └── popup_vc9.vcproj │ ├── power │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── power.bkl │ │ ├── power.cpp │ │ ├── power_vc7.vcproj │ │ ├── power_vc8.vcproj │ │ └── power_vc9.vcproj │ ├── preferences │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── preferences.bkl │ │ ├── preferences.cpp │ │ ├── preferences_vc7.vcproj │ │ ├── preferences_vc8.vcproj │ │ └── preferences_vc9.vcproj │ ├── printing │ │ ├── Makefile.in │ │ ├── folder.xpm │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── printing.bkl │ │ ├── printing.cpp │ │ ├── printing.h │ │ ├── printing_vc7.vcproj │ │ ├── printing_vc8.vcproj │ │ └── printing_vc9.vcproj │ ├── propgrid │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── propgrid.bkl │ │ ├── propgrid.cpp │ │ ├── propgrid.h │ │ ├── propgrid_minimal.cpp │ │ ├── propgrid_vc7.vcproj │ │ ├── propgrid_vc8.vcproj │ │ ├── propgrid_vc9.vcproj │ │ ├── sampleprops.cpp │ │ ├── sampleprops.h │ │ └── tests.cpp │ ├── regtest │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── key1.ico │ │ ├── key2.ico │ │ ├── key3.ico │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── registry.ico │ │ ├── regtest.bkl │ │ ├── regtest.cpp │ │ ├── regtest.rc │ │ ├── regtest_vc7.vcproj │ │ ├── regtest_vc8.vcproj │ │ ├── regtest_vc9.vcproj │ │ ├── value1.ico │ │ └── value2.ico │ ├── render │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── renddll.cpp │ │ ├── render.bkl │ │ ├── render.cpp │ │ ├── render_vc7_renddll.vcproj │ │ ├── render_vc7_render.vcproj │ │ ├── render_vc8_renddll.vcproj │ │ ├── render_vc8_render.vcproj │ │ ├── render_vc9_renddll.vcproj │ │ └── render_vc9_render.vcproj │ ├── ribbon │ │ ├── Makefile.in │ │ ├── align_center.xpm │ │ ├── align_left.xpm │ │ ├── align_right.xpm │ │ ├── aui_style.xpm │ │ ├── auto_crop_selection.xpm │ │ ├── auto_crop_selection_small.xpm │ │ ├── circle.xpm │ │ ├── circle_small.xpm │ │ ├── colours.xpm │ │ ├── cross.xpm │ │ ├── descrip.mms │ │ ├── empty.xpm │ │ ├── expand_selection_h.xpm │ │ ├── expand_selection_v.xpm │ │ ├── eye.xpm │ │ ├── fix_xpm.bat │ │ ├── fix_xpm.lua │ │ ├── hexagon.xpm │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── msw_style.xpm │ │ ├── position_left_small.xpm │ │ ├── position_top_small.xpm │ │ ├── ribbon.bkl │ │ ├── ribbon.xpm │ │ ├── ribbon_vc7.vcproj │ │ ├── ribbon_vc8.vcproj │ │ ├── ribbon_vc9.vcproj │ │ ├── ribbondemo.cpp │ │ ├── selection_panel.xpm │ │ ├── square.xpm │ │ └── triangle.xpm │ ├── richtext │ │ ├── Makefile.in │ │ ├── bitmaps │ │ │ ├── alignleft.xpm │ │ │ ├── alignright.xpm │ │ │ ├── bold.xpm │ │ │ ├── centre.xpm │ │ │ ├── copy.xpm │ │ │ ├── cut.xpm │ │ │ ├── font.xpm │ │ │ ├── idea.xpm │ │ │ ├── indentless.xpm │ │ │ ├── indentmore.xpm │ │ │ ├── italic.xpm │ │ │ ├── open.xpm │ │ │ ├── paste.xpm │ │ │ ├── redo.xpm │ │ │ ├── save.xpm │ │ │ ├── smiley.xpm │ │ │ ├── underline.xpm │ │ │ ├── undo.xpm │ │ │ └── zebra.xpm │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── readme.txt │ │ ├── richtext.bkl │ │ ├── richtext.cpp │ │ ├── richtext_vc7.vcproj │ │ ├── richtext_vc8.vcproj │ │ ├── richtext_vc9.vcproj │ │ └── todo.txt │ ├── sample.ico │ ├── sample.r │ ├── sample.rc │ ├── sample.rc4 │ ├── sample.rcO │ ├── sample.xpm │ ├── sample_os2.ico │ ├── samples.bkl │ ├── sashtest │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── sashtest.bkl │ │ ├── sashtest.cpp │ │ ├── sashtest.h │ │ ├── sashtest.ico │ │ ├── sashtest.rc │ │ ├── sashtest_vc7.vcproj │ │ ├── sashtest_vc8.vcproj │ │ └── sashtest_vc9.vcproj │ ├── scroll │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── scroll.bkl │ │ ├── scroll.cpp │ │ ├── scroll_vc7.vcproj │ │ ├── scroll_vc8.vcproj │ │ └── scroll_vc9.vcproj │ ├── shaped │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── shaped.bkl │ │ ├── shaped.cpp │ │ ├── shaped_vc7.vcproj │ │ ├── shaped_vc8.vcproj │ │ ├── shaped_vc9.vcproj │ │ └── star.png │ ├── sockets │ │ ├── Makefile.in │ │ ├── baseclient.cpp │ │ ├── baseserver.cpp │ │ ├── client.cpp │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── server.cpp │ │ ├── sockets.bkl │ │ ├── sockets_vc7_baseclient.vcproj │ │ ├── sockets_vc7_baseserver.vcproj │ │ ├── sockets_vc7_client.vcproj │ │ ├── sockets_vc7_server.vcproj │ │ ├── sockets_vc8_baseclient.vcproj │ │ ├── sockets_vc8_baseserver.vcproj │ │ ├── sockets_vc8_client.vcproj │ │ ├── sockets_vc8_server.vcproj │ │ ├── sockets_vc9_baseclient.vcproj │ │ ├── sockets_vc9_baseserver.vcproj │ │ ├── sockets_vc9_client.vcproj │ │ └── sockets_vc9_server.vcproj │ ├── sound │ │ ├── 9000g.wav │ │ ├── Makefile.in │ │ ├── cuckoo.wav │ │ ├── doggrowl.wav │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── sound.bkl │ │ ├── sound.cpp │ │ ├── sound.rc │ │ ├── sound_vc7.vcproj │ │ ├── sound_vc8.vcproj │ │ ├── sound_vc9.vcproj │ │ └── tinkalink2.wav │ ├── splash │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── mobile.xpm │ │ ├── press.mpg │ │ ├── press.pov │ │ ├── splash.bkl │ │ ├── splash.cpp │ │ ├── splash.png │ │ ├── splash.pov │ │ ├── splash_vc7.vcproj │ │ ├── splash_vc8.vcproj │ │ └── splash_vc9.vcproj │ ├── splitter │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── splitter.bkl │ │ ├── splitter.cpp │ │ ├── splitter_vc7.vcproj │ │ ├── splitter_vc8.vcproj │ │ └── splitter_vc9.vcproj │ ├── statbar │ │ ├── Makefile.in │ │ ├── green.xpm │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── red.xpm │ │ ├── statbar.bkl │ │ ├── statbar.cpp │ │ ├── statbar_vc7.vcproj │ │ ├── statbar_vc8.vcproj │ │ └── statbar_vc9.vcproj │ ├── stc │ │ ├── Makefile.in │ │ ├── defsext.h │ │ ├── descrip.mms │ │ ├── edit.cpp │ │ ├── edit.h │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── prefs.cpp │ │ ├── prefs.h │ │ ├── stctest.bkl │ │ ├── stctest.cpp │ │ ├── stctest_vc7.vcproj │ │ ├── stctest_vc8.vcproj │ │ └── stctest_vc9.vcproj │ ├── svg │ │ ├── Makefile.in │ │ ├── SVGlogo24.bmp │ │ ├── SVGlogo24.xpm │ │ ├── bitmaps │ │ │ ├── help.xpm │ │ │ ├── new.xpm │ │ │ └── save.xpm │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── svgtest.bkl │ │ ├── svgtest.cpp │ │ ├── svgtest.rc │ │ ├── svgtest_vc7.vcproj │ │ ├── svgtest_vc8.vcproj │ │ └── svgtest_vc9.vcproj │ ├── taborder │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── taborder.bkl │ │ ├── taborder.cpp │ │ ├── taborder_vc7.vcproj │ │ ├── taborder_vc8.vcproj │ │ └── taborder_vc9.vcproj │ ├── taskbar │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── smile.xpm │ │ ├── taskbar.bkl │ │ ├── taskbar_vc7.vcproj │ │ ├── taskbar_vc8.vcproj │ │ ├── taskbar_vc9.vcproj │ │ ├── tbtest.cpp │ │ └── tbtest.h │ ├── taskbarbutton │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── taskbarbutton.bkl │ │ ├── taskbarbutton.cpp │ │ ├── taskbarbutton_vc7.vcproj │ │ ├── taskbarbutton_vc8.vcproj │ │ └── taskbarbutton_vc9.vcproj │ ├── text │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── text.bkl │ │ ├── text.cpp │ │ ├── text_vc7.vcproj │ │ ├── text_vc8.vcproj │ │ └── text_vc9.vcproj │ ├── thread │ │ ├── Makefile.in │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── thread.bkl │ │ ├── thread.cpp │ │ ├── thread_vc7.vcproj │ │ ├── thread_vc8.vcproj │ │ └── thread_vc9.vcproj │ ├── toolbar │ │ ├── Makefile.in │ │ ├── bitmaps │ │ │ ├── copy.bmp │ │ │ ├── copy.xpm │ │ │ ├── cut.bmp │ │ │ ├── cut.xpm │ │ │ ├── help.bmp │ │ │ ├── help.xpm │ │ │ ├── new.bmp │ │ │ ├── new.xpm │ │ │ ├── open.bmp │ │ │ ├── open.xpm │ │ │ ├── page.bmp │ │ │ ├── paste.bmp │ │ │ ├── preview.bmp │ │ │ ├── preview.xpm │ │ │ ├── print.bmp │ │ │ ├── print.xpm │ │ │ ├── save.bmp │ │ │ └── save.xpm │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── toolbar.bkl │ │ ├── toolbar.cpp │ │ ├── toolbar.rc │ │ ├── toolbar_vc7.vcproj │ │ ├── toolbar_vc8.vcproj │ │ └── toolbar_vc9.vcproj │ ├── treectrl │ │ ├── Makefile.in │ │ ├── checked.xpm │ │ ├── icon1.xpm │ │ ├── icon2.xpm │ │ ├── icon3.xpm │ │ ├── icon4.xpm │ │ ├── icon5.xpm │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── state1.xpm │ │ ├── state2.xpm │ │ ├── state3.xpm │ │ ├── state4.xpm │ │ ├── state5.xpm │ │ ├── treectrl.bkl │ │ ├── treectrl_vc7.vcproj │ │ ├── treectrl_vc8.vcproj │ │ ├── treectrl_vc9.vcproj │ │ ├── treetest.cpp │ │ ├── treetest.h │ │ └── unchecked.xpm │ ├── treelist │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── treelist.bkl │ │ ├── treelist.cpp │ │ ├── treelist_vc7.vcproj │ │ ├── treelist_vc8.vcproj │ │ └── treelist_vc9.vcproj │ ├── typetest │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── typetest.bkl │ │ ├── typetest.cpp │ │ ├── typetest.h │ │ ├── typetest_vc7.vcproj │ │ ├── typetest_vc8.vcproj │ │ └── typetest_vc9.vcproj │ ├── uiaction │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── uiaction.bkl │ │ ├── uiaction.cpp │ │ ├── uiaction_vc7.vcproj │ │ ├── uiaction_vc8.vcproj │ │ └── uiaction_vc9.vcproj │ ├── validate │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── validate.bkl │ │ ├── validate.cpp │ │ ├── validate.h │ │ ├── validate_vc7.vcproj │ │ ├── validate_vc8.vcproj │ │ └── validate_vc9.vcproj │ ├── vscroll │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── vscroll.bkl │ │ ├── vscroll_vc7.vcproj │ │ ├── vscroll_vc8.vcproj │ │ ├── vscroll_vc9.vcproj │ │ └── vstest.cpp │ ├── webview │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── refresh.xpm │ │ ├── stop.xpm │ │ ├── webview.bkl │ │ ├── webview.cpp │ │ ├── webview_vc7.vcproj │ │ ├── webview_vc8.vcproj │ │ ├── webview_vc9.vcproj │ │ └── wxlogo.xpm │ ├── widgets │ │ ├── Makefile.in │ │ ├── activityindicator.cpp │ │ ├── bmpcombobox.cpp │ │ ├── button.cpp │ │ ├── checkbox.cpp │ │ ├── choice.cpp │ │ ├── clrpicker.cpp │ │ ├── combobox.cpp │ │ ├── datepick.cpp │ │ ├── descrip.mms │ │ ├── dirctrl.cpp │ │ ├── dirpicker.cpp │ │ ├── editlbox.cpp │ │ ├── filectrl.cpp │ │ ├── filepicker.cpp │ │ ├── fontpicker.cpp │ │ ├── gauge.cpp │ │ ├── hyperlnk.cpp │ │ ├── icons │ │ │ ├── activityindicator.xpm │ │ │ ├── bmpbtn.xpm │ │ │ ├── bmpcombobox.xpm │ │ │ ├── button.xpm │ │ │ ├── checkbox.xpm │ │ │ ├── choice.xpm │ │ │ ├── choicebk.xpm │ │ │ ├── clrpicker.xpm │ │ │ ├── combobox.xpm │ │ │ ├── datepick.xpm │ │ │ ├── dirctrl.xpm │ │ │ ├── dirpicker.xpm │ │ │ ├── filepicker.xpm │ │ │ ├── fontpicker.xpm │ │ │ ├── gauge.xpm │ │ │ ├── hyperlnk.xpm │ │ │ ├── listbook.xpm │ │ │ ├── listbox.xpm │ │ │ ├── native.xpm │ │ │ ├── notebook.xpm │ │ │ ├── odcombobox.xpm │ │ │ ├── radiobox.xpm │ │ │ ├── scrolbar.xpm │ │ │ ├── slider.xpm │ │ │ ├── spinbtn.xpm │ │ │ ├── statbmp.xpm │ │ │ ├── statbox.xpm │ │ │ ├── stattext.xpm │ │ │ ├── text.xpm │ │ │ ├── timepick.xpm │ │ │ └── toggle.xpm │ │ ├── itemcontainer.cpp │ │ ├── itemcontainer.h │ │ ├── listbox.cpp │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── native.cpp │ │ ├── native_wrapper.mm │ │ ├── notebook.cpp │ │ ├── odcombobox.cpp │ │ ├── radiobox.cpp │ │ ├── searchctrl.cpp │ │ ├── slider.cpp │ │ ├── spinbtn.cpp │ │ ├── statbmp.cpp │ │ ├── static.cpp │ │ ├── textctrl.cpp │ │ ├── timepick.cpp │ │ ├── toggle.cpp │ │ ├── widgets.bkl │ │ ├── widgets.cpp │ │ ├── widgets.h │ │ ├── widgets_vc7.vcproj │ │ ├── widgets_vc8.vcproj │ │ └── widgets_vc9.vcproj │ ├── wizard │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── wizard.bkl │ │ ├── wizard.cpp │ │ ├── wizard_vc7.vcproj │ │ ├── wizard_vc8.vcproj │ │ ├── wizard_vc9.vcproj │ │ ├── wiztest.xpm │ │ └── wiztest2.xpm │ ├── wrapsizer │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── wrapsizer.bkl │ │ ├── wrapsizer.cpp │ │ ├── wrapsizer_vc7.vcproj │ │ ├── wrapsizer_vc8.vcproj │ │ └── wrapsizer_vc9.vcproj │ ├── xrc │ │ ├── Makefile.in │ │ ├── custclas.cpp │ │ ├── custclas.h │ │ ├── derivdlg.cpp │ │ ├── derivdlg.h │ │ ├── descrip.mms │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── myframe.cpp │ │ ├── myframe.h │ │ ├── objrefdlg.cpp │ │ ├── objrefdlg.h │ │ ├── rc │ │ │ ├── artprov.xpm │ │ │ ├── artprov.xrc │ │ │ ├── aui.xpm │ │ │ ├── aui.xrc │ │ │ ├── basicdlg.xpm │ │ │ ├── basicdlg.xrc │ │ │ ├── controls.xpm │ │ │ ├── controls.xrc │ │ │ ├── custclas.xpm │ │ │ ├── custclas.xrc │ │ │ ├── derivdlg.xpm │ │ │ ├── derivdlg.xrc │ │ │ ├── fileopen.gif │ │ │ ├── filesave.gif │ │ │ ├── frame.xrc │ │ │ ├── fuzzy.gif │ │ │ ├── menu.xrc │ │ │ ├── objref.xrc │ │ │ ├── objrefdlg.xpm │ │ │ ├── platform.xpm │ │ │ ├── platform.xrc │ │ │ ├── quotes.gif │ │ │ ├── resource.xrc │ │ │ ├── stop.xpm │ │ │ ├── throbber.gif │ │ │ ├── toolbar.xrc │ │ │ ├── uncenter.xpm │ │ │ ├── uncenter.xrc │ │ │ ├── update.gif │ │ │ ├── variable.xpm │ │ │ ├── variable.xrc │ │ │ ├── variants.xpm │ │ │ ├── variants.xrc │ │ │ └── wxbanner.gif │ │ ├── xrcdemo.bkl │ │ ├── xrcdemo.cpp │ │ ├── xrcdemo.h │ │ ├── xrcdemo_vc7.vcproj │ │ ├── xrcdemo_vc8.vcproj │ │ └── xrcdemo_vc9.vcproj │ └── xti │ │ ├── Makefile.in │ │ ├── classlist.cpp │ │ ├── classlist.h │ │ ├── codereadercallback.cpp │ │ ├── codereadercallback.h │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.unx │ │ ├── makefile.vc │ │ ├── xti.bkl │ │ ├── xti.cpp │ │ ├── xti.rc │ │ ├── xti_vc7.vcproj │ │ ├── xti_vc8.vcproj │ │ └── xti_vc9.vcproj │ ├── setup.h.in │ ├── setup.h_vms │ ├── src │ ├── aui │ │ ├── auibar.cpp │ │ ├── auibook.cpp │ │ ├── barartmsw.cpp │ │ ├── descrip.mms │ │ ├── dockart.cpp │ │ ├── floatpane.cpp │ │ ├── framemanager.cpp │ │ ├── tabart.cpp │ │ ├── tabartgtk.cpp │ │ ├── tabartmsw.cpp │ │ └── tabmdi.cpp │ ├── common │ │ ├── accelcmn.cpp │ │ ├── accesscmn.cpp │ │ ├── addremovectrl.cpp │ │ ├── affinematrix2d.cpp │ │ ├── anidecod.cpp │ │ ├── animatecmn.cpp │ │ ├── any.cpp │ │ ├── appbase.cpp │ │ ├── appcmn.cpp │ │ ├── arcall.cpp │ │ ├── arcfind.cpp │ │ ├── archive.cpp │ │ ├── arrstr.cpp │ │ ├── artprov.cpp │ │ ├── artstd.cpp │ │ ├── arttango.cpp │ │ ├── base64.cpp │ │ ├── bmpbase.cpp │ │ ├── bmpbtncmn.cpp │ │ ├── bmpcboxcmn.cpp │ │ ├── bookctrl.cpp │ │ ├── btncmn.cpp │ │ ├── cairo.cpp │ │ ├── calctrlcmn.cpp │ │ ├── checkboxcmn.cpp │ │ ├── checklstcmn.cpp │ │ ├── choiccmn.cpp │ │ ├── clipcmn.cpp │ │ ├── clntdata.cpp │ │ ├── clrpickercmn.cpp │ │ ├── cmdline.cpp │ │ ├── cmdproc.cpp │ │ ├── cmndata.cpp │ │ ├── colourcmn.cpp │ │ ├── colourdata.cpp │ │ ├── combocmn.cpp │ │ ├── config.cpp │ │ ├── containr.cpp │ │ ├── convauto.cpp │ │ ├── cshelp.cpp │ │ ├── ctrlcmn.cpp │ │ ├── ctrlsub.cpp │ │ ├── datavcmn.cpp │ │ ├── datetime.cpp │ │ ├── datetimefmt.cpp │ │ ├── datstrm.cpp │ │ ├── dcbase.cpp │ │ ├── dcbufcmn.cpp │ │ ├── dcgraph.cpp │ │ ├── dcsvg.cpp │ │ ├── debugrpt.cpp │ │ ├── descrip.mms │ │ ├── dircmn.cpp │ │ ├── dirctrlcmn.cpp │ │ ├── dlgcmn.cpp │ │ ├── dndcmn.cpp │ │ ├── dobjcmn.cpp │ │ ├── docmdi.cpp │ │ ├── docview.cpp │ │ ├── dpycmn.cpp │ │ ├── dseldlg.cpp │ │ ├── dummy.cpp │ │ ├── dynarray.cpp │ │ ├── dynlib.cpp │ │ ├── dynload.cpp │ │ ├── effects.cpp │ │ ├── encconv.cpp │ │ ├── event.cpp │ │ ├── evtloopcmn.cpp │ │ ├── extended.c │ │ ├── fddlgcmn.cpp │ │ ├── fdiodispatcher.cpp │ │ ├── ffile.cpp │ │ ├── file.cpp │ │ ├── fileback.cpp │ │ ├── fileconf.cpp │ │ ├── filectrlcmn.cpp │ │ ├── filefn.cpp │ │ ├── filehistorycmn.cpp │ │ ├── filename.cpp │ │ ├── filepickercmn.cpp │ │ ├── filesys.cpp │ │ ├── filtall.cpp │ │ ├── filtfind.cpp │ │ ├── fldlgcmn.cpp │ │ ├── fmapbase.cpp │ │ ├── fontcmn.cpp │ │ ├── fontdata.cpp │ │ ├── fontenumcmn.cpp │ │ ├── fontmap.cpp │ │ ├── fontmgrcmn.cpp │ │ ├── fontpickercmn.cpp │ │ ├── fontutilcmn.cpp │ │ ├── framecmn.cpp │ │ ├── fs_arc.cpp │ │ ├── fs_filter.cpp │ │ ├── fs_inet.cpp │ │ ├── fs_mem.cpp │ │ ├── fswatchercmn.cpp │ │ ├── ftp.cpp │ │ ├── gaugecmn.cpp │ │ ├── gbsizer.cpp │ │ ├── gdicmn.cpp │ │ ├── geometry.cpp │ │ ├── gifdecod.cpp │ │ ├── glcmn.cpp │ │ ├── graphcmn.cpp │ │ ├── gridcmn.cpp │ │ ├── hash.cpp │ │ ├── hashmap.cpp │ │ ├── headercolcmn.cpp │ │ ├── headerctrlcmn.cpp │ │ ├── helpbase.cpp │ │ ├── http.cpp │ │ ├── hyperlnkcmn.cpp │ │ ├── iconbndl.cpp │ │ ├── imagall.cpp │ │ ├── imagbmp.cpp │ │ ├── image.cpp │ │ ├── imagfill.cpp │ │ ├── imaggif.cpp │ │ ├── imagiff.cpp │ │ ├── imagjpeg.cpp │ │ ├── imagpcx.cpp │ │ ├── imagpng.cpp │ │ ├── imagpnm.cpp │ │ ├── imagtga.cpp │ │ ├── imagtiff.cpp │ │ ├── imagxpm.cpp │ │ ├── init.cpp │ │ ├── intl.cpp │ │ ├── ipcbase.cpp │ │ ├── languageinfo.cpp │ │ ├── layout.cpp │ │ ├── lboxcmn.cpp │ │ ├── list.cpp │ │ ├── listctrlcmn.cpp │ │ ├── log.cpp │ │ ├── longlong.cpp │ │ ├── markupparser.cpp │ │ ├── matrix.cpp │ │ ├── mediactrlcmn.cpp │ │ ├── memory.cpp │ │ ├── menucmn.cpp │ │ ├── mimecmn.cpp │ │ ├── modalhook.cpp │ │ ├── module.cpp │ │ ├── mousemanager.cpp │ │ ├── msgout.cpp │ │ ├── mstream.cpp │ │ ├── nbkbase.cpp │ │ ├── notifmsgcmn.cpp │ │ ├── numformatter.cpp │ │ ├── object.cpp │ │ ├── odcombocmn.cpp │ │ ├── overlaycmn.cpp │ │ ├── ownerdrwcmn.cpp │ │ ├── panelcmn.cpp │ │ ├── paper.cpp │ │ ├── persist.cpp │ │ ├── pickerbase.cpp │ │ ├── platinfo.cpp │ │ ├── popupcmn.cpp │ │ ├── powercmn.cpp │ │ ├── preferencescmn.cpp │ │ ├── prntbase.cpp │ │ ├── process.cpp │ │ ├── protocol.cpp │ │ ├── quantize.cpp │ │ ├── radiobtncmn.cpp │ │ ├── radiocmn.cpp │ │ ├── rearrangectrl.cpp │ │ ├── regex.cpp │ │ ├── rendcmn.cpp │ │ ├── rgncmn.cpp │ │ ├── richtooltipcmn.cpp │ │ ├── sckaddr.cpp │ │ ├── sckfile.cpp │ │ ├── sckipc.cpp │ │ ├── sckstrm.cpp │ │ ├── scrolbarcmn.cpp │ │ ├── selectdispatcher.cpp │ │ ├── settcmn.cpp │ │ ├── sizer.cpp │ │ ├── slidercmn.cpp │ │ ├── socket.cpp │ │ ├── socketiohandler.cpp │ │ ├── spinbtncmn.cpp │ │ ├── spinctrlcmn.cpp │ │ ├── srchcmn.cpp │ │ ├── sstream.cpp │ │ ├── statbar.cpp │ │ ├── statbmpcmn.cpp │ │ ├── statboxcmn.cpp │ │ ├── statlinecmn.cpp │ │ ├── stattextcmn.cpp │ │ ├── stdpbase.cpp │ │ ├── stdstream.cpp │ │ ├── stockitem.cpp │ │ ├── stopwatch.cpp │ │ ├── strconv.cpp │ │ ├── stream.cpp │ │ ├── string.cpp │ │ ├── stringimpl.cpp │ │ ├── stringops.cpp │ │ ├── strvararg.cpp │ │ ├── sysopt.cpp │ │ ├── tarstrm.cpp │ │ ├── taskbarcmn.cpp │ │ ├── tbarbase.cpp │ │ ├── textbuf.cpp │ │ ├── textcmn.cpp │ │ ├── textentrycmn.cpp │ │ ├── textfile.cpp │ │ ├── textmeasurecmn.cpp │ │ ├── threadinfo.cpp │ │ ├── time.cpp │ │ ├── timercmn.cpp │ │ ├── timerimpl.cpp │ │ ├── tokenzr.cpp │ │ ├── toplvcmn.cpp │ │ ├── translation.cpp │ │ ├── treebase.cpp │ │ ├── txtstrm.cpp │ │ ├── uiactioncmn.cpp │ │ ├── unichar.cpp │ │ ├── unictabl.inc │ │ ├── uri.cpp │ │ ├── url.cpp │ │ ├── ustring.cpp │ │ ├── utilscmn.cpp │ │ ├── valgen.cpp │ │ ├── validate.cpp │ │ ├── valnum.cpp │ │ ├── valtext.cpp │ │ ├── variant.cpp │ │ ├── webview.cpp │ │ ├── webviewarchivehandler.cpp │ │ ├── webviewfshandler.cpp │ │ ├── wfstream.cpp │ │ ├── wincmn.cpp │ │ ├── windowid.cpp │ │ ├── wrapsizer.cpp │ │ ├── wxcrt.cpp │ │ ├── wxprintf.cpp │ │ ├── xlocale.cpp │ │ ├── xpmdecod.cpp │ │ ├── xti.cpp │ │ ├── xtistrm.cpp │ │ ├── xtixml.cpp │ │ ├── zipstrm.cpp │ │ └── zstream.cpp │ ├── dfb │ │ ├── app.cpp │ │ ├── bitmap.cpp │ │ ├── brush.cpp │ │ ├── cursor.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcscreen.cpp │ │ ├── evtloop.cpp │ │ ├── font.cpp │ │ ├── fontenum.cpp │ │ ├── fontmgr.cpp │ │ ├── nonownedwnd.cpp │ │ ├── overlay.cpp │ │ ├── pen.cpp │ │ ├── region.cpp │ │ ├── settings.cpp │ │ ├── toplevel.cpp │ │ ├── utils.cpp │ │ ├── window.cpp │ │ └── wrapdfb.cpp │ ├── expat │ │ ├── CMake.README │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Changes │ │ ├── ConfigureChecks.cmake │ │ ├── MANIFEST │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── amiga │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── expat.xml │ │ │ ├── expat_68k.c │ │ │ ├── expat_68k.h │ │ │ ├── expat_68k_handler_stubs.c │ │ │ ├── expat_base.h │ │ │ ├── expat_lib.c │ │ │ ├── expat_vectors.c │ │ │ ├── include │ │ │ │ ├── inline4 │ │ │ │ │ └── expat.h │ │ │ │ ├── interfaces │ │ │ │ │ └── expat.h │ │ │ │ ├── libraries │ │ │ │ │ └── expat.h │ │ │ │ └── proto │ │ │ │ │ └── expat.h │ │ │ └── launch.c │ │ ├── bcb5 │ │ │ ├── README.txt │ │ │ ├── all_projects.bpg │ │ │ ├── elements.bpf │ │ │ ├── elements.bpr │ │ │ ├── elements.mak │ │ │ ├── expat.bpf │ │ │ ├── expat.bpr │ │ │ ├── expat.mak │ │ │ ├── expat_static.bpf │ │ │ ├── expat_static.bpr │ │ │ ├── expat_static.mak │ │ │ ├── expatw.bpf │ │ │ ├── expatw.bpr │ │ │ ├── expatw.mak │ │ │ ├── expatw_static.bpf │ │ │ ├── expatw_static.bpr │ │ │ ├── expatw_static.mak │ │ │ ├── libexpat_mtd.def │ │ │ ├── libexpatw_mtd.def │ │ │ ├── makefile.mak │ │ │ ├── outline.bpf │ │ │ ├── outline.bpr │ │ │ ├── outline.mak │ │ │ ├── setup.bat │ │ │ ├── xmlwf.bpf │ │ │ ├── xmlwf.bpr │ │ │ └── xmlwf.mak │ │ ├── buildconf.sh │ │ ├── configure │ │ ├── configure.in │ │ ├── conftools │ │ │ ├── PrintPath │ │ │ ├── ac_c_bigendian_cross.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── expat.m4 │ │ │ ├── get-version.sh │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── mkinstalldirs │ │ ├── doc │ │ │ ├── expat.png │ │ │ ├── reference.html │ │ │ ├── style.css │ │ │ ├── valid-xhtml10.png │ │ │ ├── xmlwf.1 │ │ │ └── xmlwf.sgml │ │ ├── examples │ │ │ ├── elements.c │ │ │ └── outline.c │ │ ├── expat.dsw │ │ ├── expat.pc.in │ │ ├── expat.spec │ │ ├── expat_config.h.cmake │ │ ├── expat_config.h.in │ │ ├── gennmtab │ │ │ └── gennmtab.c │ │ ├── lib │ │ │ ├── Makefile.MPW │ │ │ ├── amigaconfig.h │ │ │ ├── ascii.h │ │ │ ├── asciitab.h │ │ │ ├── expat.h │ │ │ ├── expat_external.h │ │ │ ├── iasciitab.h │ │ │ ├── internal.h │ │ │ ├── latin1tab.h │ │ │ ├── libexpat.def │ │ │ ├── libexpatw.def │ │ │ ├── macconfig.h │ │ │ ├── nametab.h │ │ │ ├── os2config.h │ │ │ ├── utf8tab.h │ │ │ ├── watcomconfig.h │ │ │ ├── winconfig.h │ │ │ ├── xmlparse.c │ │ │ ├── xmlrole.c │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.c │ │ │ ├── xmltok.h │ │ │ ├── xmltok_impl.c │ │ │ ├── xmltok_impl.h │ │ │ └── xmltok_ns.c │ │ ├── m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── make-release.sh │ │ ├── tests │ │ │ ├── README.txt │ │ │ ├── benchmark │ │ │ │ ├── README.txt │ │ │ │ ├── benchmark.c │ │ │ │ └── benchmark.dsw │ │ │ ├── chardata.c │ │ │ ├── chardata.h │ │ │ ├── minicheck.c │ │ │ ├── minicheck.h │ │ │ ├── runtests.c │ │ │ ├── runtests.dsw │ │ │ ├── runtestspp.cpp │ │ │ └── xmltest.sh │ │ ├── vms │ │ │ ├── README.vms │ │ │ ├── descrip.mms │ │ │ └── expat_config.h │ │ ├── watcom │ │ │ ├── README.TXT │ │ │ ├── buildopts.inc │ │ │ ├── expat.lnk │ │ │ ├── makefile │ │ │ ├── watclean.mif │ │ │ ├── watmake.mif │ │ │ └── wexpat.lnk │ │ ├── win32 │ │ │ ├── MANIFEST.txt │ │ │ ├── README.txt │ │ │ └── expat.iss │ │ └── xmlwf │ │ │ ├── codepage.c │ │ │ ├── codepage.h │ │ │ ├── ct.c │ │ │ ├── filemap.h │ │ │ ├── readfilemap.c │ │ │ ├── unixfilemap.c │ │ │ ├── win32filemap.c │ │ │ ├── xmlfile.c │ │ │ ├── xmlfile.h │ │ │ ├── xmlmime.c │ │ │ ├── xmlmime.h │ │ │ ├── xmltchar.h │ │ │ ├── xmlurl.h │ │ │ ├── xmlwf.c │ │ │ └── xmlwin32url.cxx │ ├── generic │ │ ├── aboutdlgg.cpp │ │ ├── accel.cpp │ │ ├── activityindicator.cpp │ │ ├── animateg.cpp │ │ ├── bannerwindow.cpp │ │ ├── bmpcboxg.cpp │ │ ├── busyinfo.cpp │ │ ├── buttonbar.cpp │ │ ├── calctrlg.cpp │ │ ├── caret.cpp │ │ ├── choicbkg.cpp │ │ ├── choicdgg.cpp │ │ ├── clrpickerg.cpp │ │ ├── collheaderctrlg.cpp │ │ ├── collpaneg.cpp │ │ ├── colour.cpp │ │ ├── colrdlgg.cpp │ │ ├── combog.cpp │ │ ├── commandlinkbuttong.cpp │ │ ├── datavgen.cpp │ │ ├── datectlg.cpp │ │ ├── dbgrptg.cpp │ │ ├── dcpsg.cpp │ │ ├── descrip.mms │ │ ├── dirctrlg.cpp │ │ ├── dirdlgg.cpp │ │ ├── dragimgg.cpp │ │ ├── editlbox.cpp │ │ ├── fdrepdlg.cpp │ │ ├── filectrlg.cpp │ │ ├── filedlgg.cpp │ │ ├── filepickerg.cpp │ │ ├── fontdlgg.cpp │ │ ├── fontpickerg.cpp │ │ ├── fswatcherg.cpp │ │ ├── graphicc.cpp │ │ ├── grid.cpp │ │ ├── gridctrl.cpp │ │ ├── grideditors.cpp │ │ ├── gridsel.cpp │ │ ├── headerctrlg.cpp │ │ ├── helpext.cpp │ │ ├── htmllbox.cpp │ │ ├── hyperlinkg.cpp │ │ ├── icon.cpp │ │ ├── imaglist.cpp │ │ ├── infobar.cpp │ │ ├── laywin.cpp │ │ ├── listbkg.cpp │ │ ├── listctrl.cpp │ │ ├── logg.cpp │ │ ├── markuptext.cpp │ │ ├── mask.cpp │ │ ├── mdig.cpp │ │ ├── msgdlgg.cpp │ │ ├── notebook.cpp │ │ ├── notifmsgg.cpp │ │ ├── numdlgg.cpp │ │ ├── odcombo.cpp │ │ ├── paletteg.cpp │ │ ├── preferencesg.cpp │ │ ├── printps.cpp │ │ ├── prntdlgg.cpp │ │ ├── progdlgg.cpp │ │ ├── propdlg.cpp │ │ ├── regiong.cpp │ │ ├── renderg.cpp │ │ ├── richmsgdlgg.cpp │ │ ├── richtooltipg.cpp │ │ ├── sashwin.cpp │ │ ├── scrlwing.cpp │ │ ├── selstore.cpp │ │ ├── spinctlg.cpp │ │ ├── splash.cpp │ │ ├── splitter.cpp │ │ ├── srchctlg.cpp │ │ ├── statbmpg.cpp │ │ ├── statline.cpp │ │ ├── stattextg.cpp │ │ ├── statusbr.cpp │ │ ├── tabg.cpp │ │ ├── textdlgg.cpp │ │ ├── textmeasure.cpp │ │ ├── timectrlg.cpp │ │ ├── timer.cpp │ │ ├── tipdlg.cpp │ │ ├── tipwin.cpp │ │ ├── toolbkg.cpp │ │ ├── treebkg.cpp │ │ ├── treectlg.cpp │ │ ├── treelist.cpp │ │ ├── vlbox.cpp │ │ ├── vscroll.cpp │ │ └── wizard.cpp │ ├── gtk │ │ ├── aboutdlg.cpp │ │ ├── activityindicator.cpp │ │ ├── animate.cpp │ │ ├── anybutton.cpp │ │ ├── app.cpp │ │ ├── artgtk.cpp │ │ ├── assertdlg_gtk.cpp │ │ ├── bdiag.xbm │ │ ├── bitmap.cpp │ │ ├── bmpbuttn.cpp │ │ ├── bmpcbox.cpp │ │ ├── brush.cpp │ │ ├── button.cpp │ │ ├── calctrl.cpp │ │ ├── cdiag.xbm │ │ ├── checkbox.cpp │ │ ├── checklst.cpp │ │ ├── choice.cpp │ │ ├── clipbrd.cpp │ │ ├── clrpicker.cpp │ │ ├── collpane.cpp │ │ ├── colordlg.cpp │ │ ├── colour.cpp │ │ ├── combobox.cpp │ │ ├── control.cpp │ │ ├── cross.xbm │ │ ├── cursor.cpp │ │ ├── dataobj.cpp │ │ ├── dataview.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcscreen.cpp │ │ ├── descrip.mms │ │ ├── dialog.cpp │ │ ├── dirdlg.cpp │ │ ├── display.cpp │ │ ├── dnd.cpp │ │ ├── eggtrayicon.c │ │ ├── eggtrayicon.h │ │ ├── evtloop.cpp │ │ ├── fdiag.xbm │ │ ├── filectrl.cpp │ │ ├── filedlg.cpp │ │ ├── filehistory.cpp │ │ ├── filepicker.cpp │ │ ├── font.cpp │ │ ├── fontdlg.cpp │ │ ├── fontpicker.cpp │ │ ├── frame.cpp │ │ ├── gauge.cpp │ │ ├── glcanvas.cpp │ │ ├── gnome │ │ │ └── gvfs.cpp │ │ ├── horiz.xbm │ │ ├── hyperlink.cpp │ │ ├── infobar.cpp │ │ ├── listbox.cpp │ │ ├── mdi.cpp │ │ ├── menu.cpp │ │ ├── minifram.cpp │ │ ├── mnemonics.cpp │ │ ├── msgdlg.cpp │ │ ├── nativewin.cpp │ │ ├── nonownedwnd.cpp │ │ ├── notebook.cpp │ │ ├── notifmsg.cpp │ │ ├── pen.cpp │ │ ├── popupwin.cpp │ │ ├── print.cpp │ │ ├── private.cpp │ │ ├── radiobox.cpp │ │ ├── radiobut.cpp │ │ ├── region.cpp │ │ ├── renderer.cpp │ │ ├── scrolbar.cpp │ │ ├── scrolwin.cpp │ │ ├── settings.cpp │ │ ├── slider.cpp │ │ ├── sockgtk.cpp │ │ ├── spinbutt.cpp │ │ ├── spinctrl.cpp │ │ ├── statbmp.cpp │ │ ├── statbox.cpp │ │ ├── statline.cpp │ │ ├── stattext.cpp │ │ ├── taskbar.cpp │ │ ├── textctrl.cpp │ │ ├── textentry.cpp │ │ ├── textmeasure.cpp │ │ ├── tglbtn.cpp │ │ ├── timer.cpp │ │ ├── toolbar.cpp │ │ ├── tooltip.cpp │ │ ├── toplevel.cpp │ │ ├── treeentry_gtk.c │ │ ├── utilsgtk.cpp │ │ ├── verti.xbm │ │ ├── webview_webkit.cpp │ │ ├── win_gtk.cpp │ │ └── window.cpp │ ├── gtk1 │ │ ├── app.cpp │ │ ├── artgtk.cpp │ │ ├── bdiag.xbm │ │ ├── bitmap.cpp │ │ ├── bmpbuttn.cpp │ │ ├── brush.cpp │ │ ├── button.cpp │ │ ├── cdiag.xbm │ │ ├── checkbox.cpp │ │ ├── checklst.cpp │ │ ├── choice.cpp │ │ ├── clipbrd.cpp │ │ ├── colour.cpp │ │ ├── combobox.cpp │ │ ├── control.cpp │ │ ├── cross.xbm │ │ ├── cursor.cpp │ │ ├── data.cpp │ │ ├── dataobj.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcscreen.cpp │ │ ├── descrip.mms │ │ ├── dialog.cpp │ │ ├── dnd.cpp │ │ ├── eggtrayicon.c │ │ ├── eggtrayicon.h │ │ ├── evtloop.cpp │ │ ├── fdiag.xbm │ │ ├── filedlg.cpp │ │ ├── font.cpp │ │ ├── fontdlg.cpp │ │ ├── frame.cpp │ │ ├── gauge.cpp │ │ ├── glcanvas.cpp │ │ ├── horiz.xbm │ │ ├── listbox.cpp │ │ ├── main.cpp │ │ ├── mdi.cpp │ │ ├── menu.cpp │ │ ├── minifram.cpp │ │ ├── mnemonics.cpp │ │ ├── msgdlg.cpp │ │ ├── notebook.cpp │ │ ├── pen.cpp │ │ ├── popupwin.cpp │ │ ├── radiobox.cpp │ │ ├── radiobut.cpp │ │ ├── region.cpp │ │ ├── renderer.cpp │ │ ├── scrolbar.cpp │ │ ├── scrolwin.cpp │ │ ├── settings.cpp │ │ ├── slider.cpp │ │ ├── sockgtk.cpp │ │ ├── spinbutt.cpp │ │ ├── spinctrl.cpp │ │ ├── statbmp.cpp │ │ ├── statbox.cpp │ │ ├── statline.cpp │ │ ├── stattext.cpp │ │ ├── taskbar.cpp │ │ ├── textctrl.cpp │ │ ├── tglbtn.cpp │ │ ├── threadno.cpp │ │ ├── threadsgi.cpp │ │ ├── timer.cpp │ │ ├── toolbar.cpp │ │ ├── tooltip.cpp │ │ ├── toplevel.cpp │ │ ├── utilsgtk.cpp │ │ ├── utilsres.cpp │ │ ├── verti.xbm │ │ ├── win_gtk.c │ │ └── window.cpp │ ├── html │ │ ├── chm.cpp │ │ ├── descrip.mms │ │ ├── helpctrl.cpp │ │ ├── helpdata.cpp │ │ ├── helpdlg.cpp │ │ ├── helpfrm.cpp │ │ ├── helpwnd.cpp │ │ ├── htmlcell.cpp │ │ ├── htmlctrl │ │ │ └── webkit │ │ │ │ └── webkit.mm │ │ ├── htmlfilt.cpp │ │ ├── htmlpars.cpp │ │ ├── htmltag.cpp │ │ ├── htmlwin.cpp │ │ ├── htmprint.cpp │ │ ├── m_dflist.cpp │ │ ├── m_fonts.cpp │ │ ├── m_hline.cpp │ │ ├── m_image.cpp │ │ ├── m_layout.cpp │ │ ├── m_links.cpp │ │ ├── m_list.cpp │ │ ├── m_pre.cpp │ │ ├── m_span.cpp │ │ ├── m_style.cpp │ │ ├── m_tables.cpp │ │ ├── styleparams.cpp │ │ └── winpars.cpp │ ├── jpeg │ │ ├── MAKEFILE.VA │ │ ├── README │ │ ├── ansi2knr.1 │ │ ├── ansi2knr.c │ │ ├── change.log │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jchuff.h │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jconfig.vc │ │ ├── jcparam.c │ │ ├── jcphuff.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdhuff.h │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdphuff.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jidctred.c │ │ ├── jinclude.h │ │ ├── jmemansi.c │ │ ├── jmemdos.c │ │ ├── jmemdosa.asm │ │ ├── jmemmac.c │ │ ├── jmemmgr.c │ │ ├── jmemname.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpeg_CW_Prefix.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jpegtran.1 │ │ ├── jpegtran.c │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── makefile.unx │ │ └── makefile.vc │ ├── motif │ │ ├── accel.cpp │ │ ├── app.cpp │ │ ├── bdiag.xbm │ │ ├── bmpbuttn.cpp │ │ ├── bmpmotif.cpp │ │ ├── button.cpp │ │ ├── cdiag.xbm │ │ ├── checkbox.cpp │ │ ├── checklst.cpp │ │ ├── choice.cpp │ │ ├── clipbrd.cpp │ │ ├── colour.cpp │ │ ├── combobox.cpp │ │ ├── combobox_native.cpp │ │ ├── control.cpp │ │ ├── cross.xbm │ │ ├── cursor.cpp │ │ ├── data.cpp │ │ ├── dataobj.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcscreen.cpp │ │ ├── descrip.mms │ │ ├── dialog.cpp │ │ ├── dnd.cpp │ │ ├── evtloop.cpp │ │ ├── fdiag.xbm │ │ ├── filedlg.cpp │ │ ├── font.cpp │ │ ├── frame.cpp │ │ ├── gauge.cpp │ │ ├── horiz.xbm │ │ ├── icon.cpp │ │ ├── listbox.cpp │ │ ├── main.cpp │ │ ├── mdi │ │ │ ├── COPYRIGHT │ │ │ ├── Imakefile │ │ │ ├── README │ │ │ ├── config │ │ │ │ ├── C++.rules │ │ │ │ └── MDI.tmpl │ │ │ ├── doc │ │ │ │ ├── canvas.html │ │ │ │ ├── mdi.html │ │ │ │ ├── mwindow.html │ │ │ │ └── pics │ │ │ │ │ ├── classes.gif │ │ │ │ │ ├── mdi.gif │ │ │ │ │ └── winclass.gif │ │ │ ├── lib │ │ │ │ ├── Imakefile │ │ │ │ ├── XsComponent.C │ │ │ │ ├── XsComponent.h │ │ │ │ ├── XsMDICanvas.C │ │ │ │ ├── XsMDICanvas.h │ │ │ │ ├── XsMDIWindow.C │ │ │ │ ├── XsMDIWindow.h │ │ │ │ ├── XsMotifWindow.C │ │ │ │ ├── XsMotifWindow.h │ │ │ │ ├── XsMoveOutline.C │ │ │ │ ├── XsMoveOutline.h │ │ │ │ ├── XsOutline.C │ │ │ │ ├── XsOutline.h │ │ │ │ ├── XsResizeOutline.C │ │ │ │ ├── XsResizeOutline.h │ │ │ │ └── xs_motif_icon.xbm │ │ │ └── test │ │ │ │ ├── Imakefile │ │ │ │ └── MDItest.C │ │ ├── menu.cpp │ │ ├── menuitem.cpp │ │ ├── minifram.cpp │ │ ├── msgdlg.cpp │ │ ├── popupwin.cpp │ │ ├── radiobox.cpp │ │ ├── radiobut.cpp │ │ ├── scrolbar.cpp │ │ ├── settings.cpp │ │ ├── slider.cpp │ │ ├── sockmot.cpp │ │ ├── spinbutt.cpp │ │ ├── statbmp.cpp │ │ ├── statbox.cpp │ │ ├── stattext.cpp │ │ ├── textctrl.cpp │ │ ├── textentry.cpp │ │ ├── timer.cpp │ │ ├── toolbar.cpp │ │ ├── toplevel.cpp │ │ ├── utils.cpp │ │ ├── verti.xbm │ │ ├── window.cpp │ │ ├── wxwin.xbm │ │ └── xmcombo │ │ │ ├── combobox.doc │ │ │ ├── combobox.man │ │ │ ├── combop.h │ │ │ ├── copying.txt │ │ │ ├── demo.c │ │ │ ├── xmcombo.c │ │ │ └── xmcombo.h │ ├── msw │ │ ├── aboutdlg.cpp │ │ ├── accel.cpp │ │ ├── anybutton.cpp │ │ ├── app.cpp │ │ ├── appprogress.cpp │ │ ├── artmsw.cpp │ │ ├── basemsw.cpp │ │ ├── bitmap.cpp │ │ ├── bmpbuttn.cpp │ │ ├── bmpcbox.cpp │ │ ├── brush.cpp │ │ ├── button.cpp │ │ ├── calctrl.cpp │ │ ├── caret.cpp │ │ ├── checkbox.cpp │ │ ├── checklst.cpp │ │ ├── choice.cpp │ │ ├── clipbrd.cpp │ │ ├── colordlg.cpp │ │ ├── colour.cpp │ │ ├── combo.cpp │ │ ├── combobox.cpp │ │ ├── commandlinkbutton.cpp │ │ ├── control.cpp │ │ ├── crashrpt.cpp │ │ ├── cursor.cpp │ │ ├── data.cpp │ │ ├── datecontrols.cpp │ │ ├── datectrl.cpp │ │ ├── datetimectrl.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcprint.cpp │ │ ├── dcscreen.cpp │ │ ├── dde.cpp │ │ ├── debughlp.cpp │ │ ├── dialog.cpp │ │ ├── dialup.cpp │ │ ├── dib.cpp │ │ ├── dir.cpp │ │ ├── dirdlg.cpp │ │ ├── display.cpp │ │ ├── dlmsw.cpp │ │ ├── dragimag.cpp │ │ ├── enhmeta.cpp │ │ ├── evtloop.cpp │ │ ├── evtloopconsole.cpp │ │ ├── fdrepdlg.cpp │ │ ├── filedlg.cpp │ │ ├── font.cpp │ │ ├── fontdlg.cpp │ │ ├── fontenum.cpp │ │ ├── fontutil.cpp │ │ ├── frame.cpp │ │ ├── fswatcher.cpp │ │ ├── gauge.cpp │ │ ├── gdiimage.cpp │ │ ├── gdiobj.cpp │ │ ├── gdiplus.cpp │ │ ├── glcanvas.cpp │ │ ├── graphics.cpp │ │ ├── graphicsd2d.cpp │ │ ├── headerctrl.cpp │ │ ├── helpbest.cpp │ │ ├── helpchm.cpp │ │ ├── helpwin.cpp │ │ ├── hyperlink.cpp │ │ ├── icon.cpp │ │ ├── imaglist.cpp │ │ ├── iniconf.cpp │ │ ├── joystick.cpp │ │ ├── listbox.cpp │ │ ├── listctrl.cpp │ │ ├── main.cpp │ │ ├── mdi.cpp │ │ ├── mediactrl_am.cpp │ │ ├── mediactrl_qt.cpp │ │ ├── mediactrl_wmp10.cpp │ │ ├── menu.cpp │ │ ├── menuitem.cpp │ │ ├── metafile.cpp │ │ ├── mimetype.cpp │ │ ├── minifram.cpp │ │ ├── msgdlg.cpp │ │ ├── nativdlg.cpp │ │ ├── nativewin.cpp │ │ ├── nonownedwnd.cpp │ │ ├── notebook.cpp │ │ ├── notifmsg.cpp │ │ ├── ole │ │ │ ├── access.cpp │ │ │ ├── activex.cpp │ │ │ ├── automtn.cpp │ │ │ ├── dataobj.cpp │ │ │ ├── dropsrc.cpp │ │ │ ├── droptgt.cpp │ │ │ ├── oleutils.cpp │ │ │ ├── safearray.cpp │ │ │ └── uuid.cpp │ │ ├── ownerdrw.cpp │ │ ├── palette.cpp │ │ ├── panel.cpp │ │ ├── pen.cpp │ │ ├── popupwin.cpp │ │ ├── power.cpp │ │ ├── printdlg.cpp │ │ ├── printwin.cpp │ │ ├── progdlg.cpp │ │ ├── radiobox.cpp │ │ ├── radiobut.cpp │ │ ├── regconf.cpp │ │ ├── region.cpp │ │ ├── registry.cpp │ │ ├── renderer.cpp │ │ ├── richmsgdlg.cpp │ │ ├── richtooltip.cpp │ │ ├── rt │ │ │ ├── notifmsgrt.cpp │ │ │ └── utilsrt.cpp │ │ ├── scrolbar.cpp │ │ ├── settings.cpp │ │ ├── slider.cpp │ │ ├── snglinst.cpp │ │ ├── sockmsw.cpp │ │ ├── sound.cpp │ │ ├── spinbutt.cpp │ │ ├── spinctrl.cpp │ │ ├── stackwalk.cpp │ │ ├── statbmp.cpp │ │ ├── statbox.cpp │ │ ├── statline.cpp │ │ ├── stattext.cpp │ │ ├── statusbar.cpp │ │ ├── stdpaths.cpp │ │ ├── systhemectrl.cpp │ │ ├── taskbar.cpp │ │ ├── taskbarbutton.cpp │ │ ├── textctrl.cpp │ │ ├── textentry.cpp │ │ ├── textmeasure.cpp │ │ ├── tglbtn.cpp │ │ ├── thread.cpp │ │ ├── timectrl.cpp │ │ ├── timer.cpp │ │ ├── toolbar.cpp │ │ ├── tooltip.cpp │ │ ├── toplevel.cpp │ │ ├── treectrl.cpp │ │ ├── uiaction.cpp │ │ ├── urlmsw.cpp │ │ ├── utils.cpp │ │ ├── utilsexc.cpp │ │ ├── utilsgui.cpp │ │ ├── utilswin.cpp │ │ ├── uxtheme.cpp │ │ ├── version.rc │ │ ├── volume.cpp │ │ ├── webview_ie.cpp │ │ ├── window.cpp │ │ └── winestub.c │ ├── osx │ │ ├── accel.cpp │ │ ├── anybutton_osx.cpp │ │ ├── artmac.cpp │ │ ├── bmpbuttn_osx.cpp │ │ ├── brush.cpp │ │ ├── button_osx.cpp │ │ ├── carbon │ │ │ ├── Info.plist.in │ │ │ ├── app.cpp │ │ │ ├── apprsrc.r │ │ │ ├── carbrsrc.r │ │ │ ├── clipbrd.cpp │ │ │ ├── colordlg.cpp │ │ │ ├── colordlgosx.mm │ │ │ ├── combobox.cpp │ │ │ ├── combobxc.cpp │ │ │ ├── control.cpp │ │ │ ├── corersrc.r │ │ │ ├── cursor.cpp │ │ │ ├── dataobj.cpp │ │ │ ├── dcclient.cpp │ │ │ ├── dcprint.cpp │ │ │ ├── dcscreen.cpp │ │ │ ├── dirmac.cpp │ │ │ ├── font.cpp │ │ │ ├── fontdlg.cpp │ │ │ ├── fontdlgosx.mm │ │ │ ├── frame.cpp │ │ │ ├── gdiobj.cpp │ │ │ ├── graphics.cpp │ │ │ ├── icon.cpp │ │ │ ├── main.cpp │ │ │ ├── mdi.cpp │ │ │ ├── metafile.cpp │ │ │ ├── overlay.cpp │ │ │ ├── popupwin.cpp │ │ │ ├── region.cpp │ │ │ ├── renderer.cpp │ │ │ ├── sound.cpp │ │ │ ├── statbrma.cpp │ │ │ ├── thread.cpp │ │ │ ├── utilscocoa.mm │ │ │ └── wxmac.icns │ │ ├── checkbox_osx.cpp │ │ ├── checklst_osx.cpp │ │ ├── choice_osx.cpp │ │ ├── cocoa │ │ │ ├── aboutdlg.mm │ │ │ ├── activityindicator.mm │ │ │ ├── anybutton.mm │ │ │ ├── appprogress.mm │ │ │ ├── button.mm │ │ │ ├── checkbox.mm │ │ │ ├── choice.mm │ │ │ ├── colour.mm │ │ │ ├── combobox.mm │ │ │ ├── dataview.mm │ │ │ ├── datetimectrl.mm │ │ │ ├── dialog.mm │ │ │ ├── dirdlg.mm │ │ │ ├── dnd.mm │ │ │ ├── evtloop.mm │ │ │ ├── filedlg.mm │ │ │ ├── gauge.mm │ │ │ ├── glcanvas.mm │ │ │ ├── listbox.mm │ │ │ ├── mediactrl.mm │ │ │ ├── menu.mm │ │ │ ├── menuitem.mm │ │ │ ├── msgdlg.mm │ │ │ ├── nativewin.mm │ │ │ ├── nonownedwnd.mm │ │ │ ├── notebook.mm │ │ │ ├── notifmsg.mm │ │ │ ├── overlay.mm │ │ │ ├── power.mm │ │ │ ├── preferences.mm │ │ │ ├── printdlg.mm │ │ │ ├── radiobut.mm │ │ │ ├── scrolbar.mm │ │ │ ├── settings.mm │ │ │ ├── slider.mm │ │ │ ├── spinbutt.mm │ │ │ ├── srchctrl.mm │ │ │ ├── statbox.mm │ │ │ ├── statline.mm │ │ │ ├── stattext.mm │ │ │ ├── stdpaths.mm │ │ │ ├── taskbar.mm │ │ │ ├── textctrl.mm │ │ │ ├── tglbtn.mm │ │ │ ├── toolbar.mm │ │ │ ├── tooltip.mm │ │ │ ├── utils.mm │ │ │ ├── utils_base.mm │ │ │ └── window.mm │ │ ├── combobox_osx.cpp │ │ ├── core │ │ │ ├── bitmap.cpp │ │ │ ├── cfstring.cpp │ │ │ ├── colour.cpp │ │ │ ├── dcmemory.cpp │ │ │ ├── display.cpp │ │ │ ├── evtloop_cf.cpp │ │ │ ├── fontenum.cpp │ │ │ ├── hid.cpp │ │ │ ├── hidjoystick.cpp │ │ │ ├── mimetype.cpp │ │ │ ├── printmac.cpp │ │ │ ├── sockosx.cpp │ │ │ ├── sound.cpp │ │ │ ├── strconv_cf.cpp │ │ │ ├── timer.cpp │ │ │ ├── utilsexc_base.cpp │ │ │ └── utilsexc_cf.cpp │ │ ├── dataview_osx.cpp │ │ ├── datectrl_osx.cpp │ │ ├── datetimectrl_osx.cpp │ │ ├── dialog_osx.cpp │ │ ├── dnd_osx.cpp │ │ ├── fontutil.cpp │ │ ├── fswatcher_fsevents.cpp │ │ ├── gauge_osx.cpp │ │ ├── glcanvas_osx.cpp │ │ ├── imaglist.cpp │ │ ├── iphone │ │ │ ├── anybutton.mm │ │ │ ├── button.mm │ │ │ ├── checkbox.mm │ │ │ ├── dialog.mm │ │ │ ├── evtloop.mm │ │ │ ├── gauge.mm │ │ │ ├── glcanvas.mm │ │ │ ├── msgdlg.mm │ │ │ ├── nonownedwnd.mm │ │ │ ├── scrolbar.mm │ │ │ ├── settings.mm │ │ │ ├── slider.mm │ │ │ ├── stattext.mm │ │ │ ├── textctrl.mm │ │ │ ├── toolbar.mm │ │ │ ├── utils.mm │ │ │ └── window.mm │ │ ├── listbox_osx.cpp │ │ ├── menu_osx.cpp │ │ ├── menuitem_osx.cpp │ │ ├── minifram.cpp │ │ ├── nonownedwnd_osx.cpp │ │ ├── notebook_osx.cpp │ │ ├── palette.cpp │ │ ├── pen.cpp │ │ ├── printdlg_osx.cpp │ │ ├── radiobox_osx.cpp │ │ ├── radiobut_osx.cpp │ │ ├── scrolbar_osx.cpp │ │ ├── slider_osx.cpp │ │ ├── sound_osx.cpp │ │ ├── spinbutt_osx.cpp │ │ ├── srchctrl_osx.cpp │ │ ├── statbox_osx.cpp │ │ ├── statline_osx.cpp │ │ ├── stattext_osx.cpp │ │ ├── textctrl_osx.cpp │ │ ├── textentry_osx.cpp │ │ ├── tglbtn_osx.cpp │ │ ├── timectrl_osx.cpp │ │ ├── toolbar_osx.cpp │ │ ├── toplevel_osx.cpp │ │ ├── uiaction_osx.cpp │ │ ├── utils_osx.cpp │ │ ├── webview_webkit.mm │ │ ├── window_osx.cpp │ │ └── wxmac.icns │ ├── png │ │ ├── ANNOUNCE │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── example.c │ │ ├── install-sh │ │ ├── libpng-config.in │ │ ├── libpng-manual.txt │ │ ├── libpng.3 │ │ ├── libpng.pc.in │ │ ├── libpngpf.3 │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── png.5 │ │ ├── png.c │ │ ├── png.h │ │ ├── pngbar.jpg │ │ ├── pngbar.png │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngmem.c │ │ ├── pngnow.png │ │ ├── pngpread.c │ │ ├── pngprefix.h │ │ ├── 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 │ │ ├── scripts │ │ │ ├── README.txt │ │ │ ├── SCOPTIONS.ppc │ │ │ ├── checksym.awk │ │ │ ├── def.c │ │ │ ├── descrip.mms │ │ │ ├── dfn.awk │ │ │ ├── intprefix.c │ │ │ ├── libpng-config-body.in │ │ │ ├── libpng-config-head.in │ │ │ ├── libpng.pc.in │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── macro.lst │ │ │ ├── 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.freebsd │ │ │ ├── makefile.gcc │ │ │ ├── makefile.hp64 │ │ │ ├── makefile.hpgcc │ │ │ ├── makefile.hpux │ │ │ ├── makefile.ibmc │ │ │ ├── makefile.intel │ │ │ ├── makefile.knr │ │ │ ├── makefile.linux │ │ │ ├── makefile.mips │ │ │ ├── makefile.msc │ │ │ ├── makefile.msys │ │ │ ├── makefile.ne12bsd │ │ │ ├── makefile.netbsd │ │ │ ├── makefile.openbsd │ │ │ ├── makefile.sco │ │ │ ├── makefile.sggcc │ │ │ ├── makefile.sgi │ │ │ ├── makefile.so9 │ │ │ ├── makefile.solaris │ │ │ ├── makefile.solaris-x86 │ │ │ ├── makefile.std │ │ │ ├── makefile.sunos │ │ │ ├── makefile.tc3 │ │ │ ├── makefile.vcwin32 │ │ │ ├── makevms.com │ │ │ ├── options.awk │ │ │ ├── pnglibconf.dfa │ │ │ ├── pnglibconf.h.prebuilt │ │ │ ├── pnglibconf.mak │ │ │ ├── pngwin.rc │ │ │ ├── prefix.c │ │ │ ├── smakefile.ppc │ │ │ ├── sym.c │ │ │ ├── symbols.c │ │ │ ├── symbols.def │ │ │ └── vers.c │ │ └── test-driver │ ├── propgrid │ │ ├── advprops.cpp │ │ ├── descrip.mms │ │ ├── editors.cpp │ │ ├── manager.cpp │ │ ├── property.cpp │ │ ├── propgrid.cpp │ │ ├── propgridiface.cpp │ │ ├── propgridpagestate.cpp │ │ └── props.cpp │ ├── qt │ │ ├── accel.cpp │ │ ├── anybutton.cpp │ │ ├── app.cpp │ │ ├── apptraits.cpp │ │ ├── bitmap.cpp │ │ ├── bmpbuttn.cpp │ │ ├── brush.cpp │ │ ├── button.cpp │ │ ├── calctrl.cpp │ │ ├── checkbox.cpp │ │ ├── checklst.cpp │ │ ├── choice.cpp │ │ ├── clipbrd.cpp │ │ ├── clrpicker.cpp │ │ ├── colordlg.cpp │ │ ├── colour.cpp │ │ ├── combobox.cpp │ │ ├── control.cpp │ │ ├── converter.cpp │ │ ├── ctrlsub.cpp │ │ ├── cursor.cpp │ │ ├── dataobj.cpp │ │ ├── dataview.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcprint.cpp │ │ ├── dcscreen.cpp │ │ ├── defs.cpp │ │ ├── dialog.cpp │ │ ├── display.cpp │ │ ├── dnd.cpp │ │ ├── dvrenderer.cpp │ │ ├── dvrenderers.cpp │ │ ├── evtloop.cpp │ │ ├── filedlg.cpp │ │ ├── font.cpp │ │ ├── fontdlg.cpp │ │ ├── fontenum.cpp │ │ ├── fontutil.cpp │ │ ├── frame.cpp │ │ ├── gauge.cpp │ │ ├── glcanvas.cpp │ │ ├── listbox.cpp │ │ ├── listctrl.cpp │ │ ├── mdi.cpp │ │ ├── mediactrl.cpp │ │ ├── menu.cpp │ │ ├── menuitem.cpp │ │ ├── minifram.cpp │ │ ├── msgdlg.cpp │ │ ├── notebook.cpp │ │ ├── palette.cpp │ │ ├── pen.cpp │ │ ├── popupwin.cpp │ │ ├── printdlg.cpp │ │ ├── printqt.cpp │ │ ├── radiobox.cpp │ │ ├── radiobut.cpp │ │ ├── region.cpp │ │ ├── scrolbar.cpp │ │ ├── settings.cpp │ │ ├── slider.cpp │ │ ├── sockqt.cpp │ │ ├── spinbutt.cpp │ │ ├── spinctrl.cpp │ │ ├── statbmp.cpp │ │ ├── statbox.cpp │ │ ├── statline.cpp │ │ ├── stattext.cpp │ │ ├── statusbar.cpp │ │ ├── taskbar.cpp │ │ ├── textctrl.cpp │ │ ├── textentry.cpp │ │ ├── tglbtn.cpp │ │ ├── timer.cpp │ │ ├── toolbar.cpp │ │ ├── tooltip.cpp │ │ ├── toplevel.cpp │ │ ├── treectrl.cpp │ │ ├── uiaction.cpp │ │ ├── utils.cpp │ │ └── window.cpp │ ├── regex │ │ ├── COPYRIGHT │ │ ├── README │ │ ├── descrip.mms │ │ ├── re_syntax.n │ │ ├── regc_color.c │ │ ├── regc_cvec.c │ │ ├── regc_lex.c │ │ ├── regc_locale.c │ │ ├── regc_nfa.c │ │ ├── regcomp.c │ │ ├── regcustom.h │ │ ├── rege_dfa.c │ │ ├── regerror.c │ │ ├── regerrs.h │ │ ├── regex.h │ │ ├── regex.vcp │ │ ├── regexec.c │ │ ├── regfree.c │ │ ├── regfronts.c │ │ ├── regguts.h │ │ ├── splice.sh │ │ └── tclUniData.c │ ├── ribbon │ │ ├── art_aui.cpp │ │ ├── art_internal.cpp │ │ ├── art_msw.cpp │ │ ├── bar.cpp │ │ ├── buttonbar.cpp │ │ ├── control.cpp │ │ ├── descrip.mms │ │ ├── gallery.cpp │ │ ├── page.cpp │ │ ├── panel.cpp │ │ └── toolbar.cpp │ ├── richtext │ │ ├── descrip.mms │ │ ├── readme │ │ ├── richtextbackgroundpage.cpp │ │ ├── richtextborderspage.cpp │ │ ├── richtextbuffer.cpp │ │ ├── richtextbulletspage.cpp │ │ ├── richtextctrl.cpp │ │ ├── richtextdialogs.pjd │ │ ├── richtextfontpage.cpp │ │ ├── richtextformatdlg.cpp │ │ ├── richtexthtml.cpp │ │ ├── richtextimagedlg.cpp │ │ ├── richtextindentspage.cpp │ │ ├── richtextliststylepage.cpp │ │ ├── richtextmarginspage.cpp │ │ ├── richtextprint.cpp │ │ ├── richtextsizepage.cpp │ │ ├── richtextstyledlg.cpp │ │ ├── richtextstylepage.cpp │ │ ├── richtextstyles.cpp │ │ ├── richtextsymboldlg.cpp │ │ ├── richtexttabspage.cpp │ │ └── richtextxml.cpp │ ├── stc │ │ ├── PlatWX.cpp │ │ ├── PlatWX.h │ │ ├── README.txt │ │ ├── ScintillaWX.cpp │ │ ├── ScintillaWX.h │ │ ├── descrip.mms │ │ ├── gen_iface.py │ │ ├── scintilla │ │ │ ├── License.txt │ │ │ ├── README.txt │ │ │ ├── include │ │ │ │ ├── ILexer.h │ │ │ │ ├── Platform.h │ │ │ │ ├── SciLexer.h │ │ │ │ ├── Scintilla.h │ │ │ │ ├── Scintilla.iface │ │ │ │ └── ScintillaWidget.h │ │ │ ├── lexers │ │ │ │ ├── LexA68k.cxx │ │ │ │ ├── LexAPDL.cxx │ │ │ │ ├── LexASY.cxx │ │ │ │ ├── LexAU3.cxx │ │ │ │ ├── LexAVE.cxx │ │ │ │ ├── LexAVS.cxx │ │ │ │ ├── LexAbaqus.cxx │ │ │ │ ├── LexAda.cxx │ │ │ │ ├── LexAsm.cxx │ │ │ │ ├── LexAsn1.cxx │ │ │ │ ├── LexBaan.cxx │ │ │ │ ├── LexBash.cxx │ │ │ │ ├── LexBasic.cxx │ │ │ │ ├── LexBibTeX.cxx │ │ │ │ ├── LexBullant.cxx │ │ │ │ ├── LexCLW.cxx │ │ │ │ ├── LexCOBOL.cxx │ │ │ │ ├── LexCPP.cxx │ │ │ │ ├── LexCSS.cxx │ │ │ │ ├── LexCaml.cxx │ │ │ │ ├── LexCmake.cxx │ │ │ │ ├── LexCoffeeScript.cxx │ │ │ │ ├── LexConf.cxx │ │ │ │ ├── LexCrontab.cxx │ │ │ │ ├── LexCsound.cxx │ │ │ │ ├── LexD.cxx │ │ │ │ ├── LexDMAP.cxx │ │ │ │ ├── LexDMIS.cxx │ │ │ │ ├── LexECL.cxx │ │ │ │ ├── LexEScript.cxx │ │ │ │ ├── LexEiffel.cxx │ │ │ │ ├── LexErlang.cxx │ │ │ │ ├── LexFlagship.cxx │ │ │ │ ├── LexForth.cxx │ │ │ │ ├── LexFortran.cxx │ │ │ │ ├── LexGAP.cxx │ │ │ │ ├── LexGui4Cli.cxx │ │ │ │ ├── LexHTML.cxx │ │ │ │ ├── LexHaskell.cxx │ │ │ │ ├── LexHex.cxx │ │ │ │ ├── LexInno.cxx │ │ │ │ ├── LexKVIrc.cxx │ │ │ │ ├── LexKix.cxx │ │ │ │ ├── LexLaTeX.cxx │ │ │ │ ├── LexLisp.cxx │ │ │ │ ├── LexLout.cxx │ │ │ │ ├── LexLua.cxx │ │ │ │ ├── LexMMIXAL.cxx │ │ │ │ ├── LexMPT.cxx │ │ │ │ ├── LexMSSQL.cxx │ │ │ │ ├── LexMagik.cxx │ │ │ │ ├── LexMarkdown.cxx │ │ │ │ ├── LexMatlab.cxx │ │ │ │ ├── LexMetapost.cxx │ │ │ │ ├── LexModula.cxx │ │ │ │ ├── LexMySQL.cxx │ │ │ │ ├── LexNimrod.cxx │ │ │ │ ├── LexNsis.cxx │ │ │ │ ├── LexOScript.cxx │ │ │ │ ├── LexOpal.cxx │ │ │ │ ├── LexOthers.cxx │ │ │ │ ├── LexPB.cxx │ │ │ │ ├── LexPLM.cxx │ │ │ │ ├── LexPO.cxx │ │ │ │ ├── LexPOV.cxx │ │ │ │ ├── LexPS.cxx │ │ │ │ ├── LexPascal.cxx │ │ │ │ ├── LexPerl.cxx │ │ │ │ ├── LexPowerPro.cxx │ │ │ │ ├── LexPowerShell.cxx │ │ │ │ ├── LexProgress.cxx │ │ │ │ ├── LexPython.cxx │ │ │ │ ├── LexR.cxx │ │ │ │ ├── LexRebol.cxx │ │ │ │ ├── LexRegistry.cxx │ │ │ │ ├── LexRuby.cxx │ │ │ │ ├── LexRust.cxx │ │ │ │ ├── LexSML.cxx │ │ │ │ ├── LexSQL.cxx │ │ │ │ ├── LexSTTXT.cxx │ │ │ │ ├── LexScriptol.cxx │ │ │ │ ├── LexSmalltalk.cxx │ │ │ │ ├── LexSorcus.cxx │ │ │ │ ├── LexSpecman.cxx │ │ │ │ ├── LexSpice.cxx │ │ │ │ ├── LexTACL.cxx │ │ │ │ ├── LexTADS3.cxx │ │ │ │ ├── LexTAL.cxx │ │ │ │ ├── LexTCL.cxx │ │ │ │ ├── LexTCMD.cxx │ │ │ │ ├── LexTeX.cxx │ │ │ │ ├── LexTxt2tags.cxx │ │ │ │ ├── LexVB.cxx │ │ │ │ ├── LexVHDL.cxx │ │ │ │ ├── LexVerilog.cxx │ │ │ │ ├── LexVisualProlog.cxx │ │ │ │ ├── LexYAML.cxx │ │ │ │ └── descrip.mms │ │ │ ├── lexlib │ │ │ │ ├── Accessor.cxx │ │ │ │ ├── Accessor.h │ │ │ │ ├── CharacterCategory.cxx │ │ │ │ ├── CharacterCategory.h │ │ │ │ ├── CharacterSet.cxx │ │ │ │ ├── CharacterSet.h │ │ │ │ ├── LexAccessor.h │ │ │ │ ├── LexerBase.cxx │ │ │ │ ├── LexerBase.h │ │ │ │ ├── LexerModule.cxx │ │ │ │ ├── LexerModule.h │ │ │ │ ├── LexerNoExceptions.cxx │ │ │ │ ├── LexerNoExceptions.h │ │ │ │ ├── LexerSimple.cxx │ │ │ │ ├── LexerSimple.h │ │ │ │ ├── OptionSet.h │ │ │ │ ├── PropSetSimple.cxx │ │ │ │ ├── PropSetSimple.h │ │ │ │ ├── SparseState.h │ │ │ │ ├── StringCopy.h │ │ │ │ ├── StyleContext.cxx │ │ │ │ ├── StyleContext.h │ │ │ │ ├── SubStyles.h │ │ │ │ ├── WordList.cxx │ │ │ │ ├── WordList.h │ │ │ │ └── descrip.mms │ │ │ └── src │ │ │ │ ├── AutoComplete.cxx │ │ │ │ ├── AutoComplete.h │ │ │ │ ├── CallTip.cxx │ │ │ │ ├── CallTip.h │ │ │ │ ├── CaseConvert.cxx │ │ │ │ ├── CaseConvert.h │ │ │ │ ├── CaseFolder.cxx │ │ │ │ ├── CaseFolder.h │ │ │ │ ├── Catalogue.cxx │ │ │ │ ├── Catalogue.h │ │ │ │ ├── CellBuffer.cxx │ │ │ │ ├── CellBuffer.h │ │ │ │ ├── CharClassify.cxx │ │ │ │ ├── CharClassify.h │ │ │ │ ├── ContractionState.cxx │ │ │ │ ├── ContractionState.h │ │ │ │ ├── Decoration.cxx │ │ │ │ ├── Decoration.h │ │ │ │ ├── Document.cxx │ │ │ │ ├── Document.h │ │ │ │ ├── EditModel.cxx │ │ │ │ ├── EditModel.h │ │ │ │ ├── EditView.cxx │ │ │ │ ├── EditView.h │ │ │ │ ├── Editor.cxx │ │ │ │ ├── Editor.h │ │ │ │ ├── ExternalLexer.cxx │ │ │ │ ├── ExternalLexer.h │ │ │ │ ├── FontQuality.h │ │ │ │ ├── Indicator.cxx │ │ │ │ ├── Indicator.h │ │ │ │ ├── KeyMap.cxx │ │ │ │ ├── KeyMap.h │ │ │ │ ├── LineMarker.cxx │ │ │ │ ├── LineMarker.h │ │ │ │ ├── MarginView.cxx │ │ │ │ ├── MarginView.h │ │ │ │ ├── Partitioning.h │ │ │ │ ├── PerLine.cxx │ │ │ │ ├── PerLine.h │ │ │ │ ├── PositionCache.cxx │ │ │ │ ├── PositionCache.h │ │ │ │ ├── RESearch.cxx │ │ │ │ ├── RESearch.h │ │ │ │ ├── RunStyles.cxx │ │ │ │ ├── RunStyles.h │ │ │ │ ├── ScintillaBase.cxx │ │ │ │ ├── ScintillaBase.h │ │ │ │ ├── Selection.cxx │ │ │ │ ├── Selection.h │ │ │ │ ├── SplitVector.h │ │ │ │ ├── Style.cxx │ │ │ │ ├── Style.h │ │ │ │ ├── UniConversion.cxx │ │ │ │ ├── UniConversion.h │ │ │ │ ├── UnicodeFromUTF8.h │ │ │ │ ├── ViewStyle.cxx │ │ │ │ ├── ViewStyle.h │ │ │ │ ├── XPM.cxx │ │ │ │ ├── XPM.h │ │ │ │ └── descrip.mms │ │ ├── stc.cpp │ │ ├── stc.cpp.in │ │ ├── stc.h.in │ │ ├── stc.interface.h.in │ │ └── stc_i18n.cpp │ ├── tiff │ │ ├── COPYRIGHT │ │ ├── ChangeLog │ │ ├── HOWTO-RELEASE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.vc │ │ ├── README │ │ ├── README.vms │ │ ├── RELEASE-DATE │ │ ├── SConstruct │ │ ├── TODO │ │ ├── VERSION │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── build │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── README │ │ ├── config │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ ├── mkinstalldirs │ │ │ └── test-driver │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.com │ │ ├── contrib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── addtiffo │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.vc │ │ │ │ ├── README │ │ │ │ ├── addtiffo.c │ │ │ │ ├── tif_overview.c │ │ │ │ ├── tif_ovrcache.c │ │ │ │ └── tif_ovrcache.h │ │ │ ├── dbs │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── tiff-bi.c │ │ │ │ ├── tiff-grayscale.c │ │ │ │ ├── tiff-palette.c │ │ │ │ ├── tiff-rgb.c │ │ │ │ └── xtiff │ │ │ │ │ ├── Imakefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── patchlevel.h │ │ │ │ │ ├── xtiff.c │ │ │ │ │ └── xtifficon.h │ │ │ ├── iptcutil │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── iptcutil.c │ │ │ │ ├── test.iptc │ │ │ │ └── test.txt │ │ │ ├── mfs │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ └── mfs_file.c │ │ │ ├── pds │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── tif_imageiter.c │ │ │ │ ├── tif_imageiter.h │ │ │ │ ├── tif_pdsdirread.c │ │ │ │ └── tif_pdsdirwrite.c │ │ │ ├── ras │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── ras2tif.c │ │ │ │ └── tif2ras.c │ │ │ ├── stream │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── tiffstream.cpp │ │ │ │ └── tiffstream.h │ │ │ ├── tags │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── listtif.c │ │ │ │ ├── maketif.c │ │ │ │ ├── xtif_dir.c │ │ │ │ ├── xtiffio.h │ │ │ │ └── xtiffiop.h │ │ │ └── win_dib │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.w95 │ │ │ │ ├── README.Tiffile │ │ │ │ ├── README.tiff2dib │ │ │ │ ├── Tiffile.cpp │ │ │ │ └── tiff2dib.c │ │ ├── html │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TIFFTechNote2.html │ │ │ ├── addingtags.html │ │ │ ├── bugs.html │ │ │ ├── build.html │ │ │ ├── contrib.html │ │ │ ├── document.html │ │ │ ├── images.html │ │ │ ├── images │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── back.gif │ │ │ │ ├── bali.jpg │ │ │ │ ├── cat.gif │ │ │ │ ├── cover.jpg │ │ │ │ ├── cramps.gif │ │ │ │ ├── dave.gif │ │ │ │ ├── info.gif │ │ │ │ ├── jello.jpg │ │ │ │ ├── jim.gif │ │ │ │ ├── note.gif │ │ │ │ ├── oxford.gif │ │ │ │ ├── quad.jpg │ │ │ │ ├── ring.gif │ │ │ │ ├── smallliz.jpg │ │ │ │ ├── strike.gif │ │ │ │ └── warning.gif │ │ │ ├── index.html │ │ │ ├── internals.html │ │ │ ├── intro.html │ │ │ ├── libtiff.html │ │ │ ├── man │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── TIFFClose.3tiff.html │ │ │ │ ├── TIFFDataWidth.3tiff.html │ │ │ │ ├── TIFFError.3tiff.html │ │ │ │ ├── TIFFFieldDataType.3tiff.html │ │ │ │ ├── TIFFFieldName.3tiff.html │ │ │ │ ├── TIFFFieldPassCount.3tiff.html │ │ │ │ ├── TIFFFieldReadCount.3tiff.html │ │ │ │ ├── TIFFFieldTag.3tiff.html │ │ │ │ ├── TIFFFieldWriteCount.3tiff.html │ │ │ │ ├── TIFFFlush.3tiff.html │ │ │ │ ├── TIFFGetField.3tiff.html │ │ │ │ ├── TIFFOpen.3tiff.html │ │ │ │ ├── TIFFPrintDirectory.3tiff.html │ │ │ │ ├── TIFFRGBAImage.3tiff.html │ │ │ │ ├── TIFFReadDirectory.3tiff.html │ │ │ │ ├── TIFFReadEncodedStrip.3tiff.html │ │ │ │ ├── TIFFReadEncodedTile.3tiff.html │ │ │ │ ├── TIFFReadRGBAImage.3tiff.html │ │ │ │ ├── TIFFReadRGBAStrip.3tiff.html │ │ │ │ ├── TIFFReadRGBATile.3tiff.html │ │ │ │ ├── TIFFReadRawStrip.3tiff.html │ │ │ │ ├── TIFFReadRawTile.3tiff.html │ │ │ │ ├── TIFFReadScanline.3tiff.html │ │ │ │ ├── TIFFReadTile.3tiff.html │ │ │ │ ├── TIFFSetDirectory.3tiff.html │ │ │ │ ├── TIFFSetField.3tiff.html │ │ │ │ ├── TIFFWarning.3tiff.html │ │ │ │ ├── TIFFWriteDirectory.3tiff.html │ │ │ │ ├── TIFFWriteEncodedStrip.3tiff.html │ │ │ │ ├── TIFFWriteEncodedTile.3tiff.html │ │ │ │ ├── TIFFWriteRawStrip.3tiff.html │ │ │ │ ├── TIFFWriteRawTile.3tiff.html │ │ │ │ ├── TIFFWriteScanline.3tiff.html │ │ │ │ ├── TIFFWriteTile.3tiff.html │ │ │ │ ├── TIFFbuffer.3tiff.html │ │ │ │ ├── TIFFcodec.3tiff.html │ │ │ │ ├── TIFFcolor.3tiff.html │ │ │ │ ├── TIFFmemory.3tiff.html │ │ │ │ ├── TIFFquery.3tiff.html │ │ │ │ ├── TIFFsize.3tiff.html │ │ │ │ ├── TIFFstrip.3tiff.html │ │ │ │ ├── TIFFswab.3tiff.html │ │ │ │ ├── TIFFtile.3tiff.html │ │ │ │ ├── bmp2tiff.1.html │ │ │ │ ├── fax2ps.1.html │ │ │ │ ├── fax2tiff.1.html │ │ │ │ ├── gif2tiff.1.html │ │ │ │ ├── index.html │ │ │ │ ├── libtiff.3tiff.html │ │ │ │ ├── pal2rgb.1.html │ │ │ │ ├── ppm2tiff.1.html │ │ │ │ ├── ras2tiff.1.html │ │ │ │ ├── raw2tiff.1.html │ │ │ │ ├── rgb2ycbcr.1.html │ │ │ │ ├── sgi2tiff.1.html │ │ │ │ ├── thumbnail.1.html │ │ │ │ ├── tiff2bw.1.html │ │ │ │ ├── tiff2pdf.1.html │ │ │ │ ├── tiff2ps.1.html │ │ │ │ ├── tiff2rgba.1.html │ │ │ │ ├── tiffcmp.1.html │ │ │ │ ├── tiffcp.1.html │ │ │ │ ├── tiffcrop.1.html │ │ │ │ ├── tiffdither.1.html │ │ │ │ ├── tiffdump.1.html │ │ │ │ ├── tiffgt.1.html │ │ │ │ ├── tiffinfo.1.html │ │ │ │ ├── tiffmedian.1.html │ │ │ │ ├── tiffset.1.html │ │ │ │ ├── tiffsplit.1.html │ │ │ │ └── tiffsv.1.html │ │ │ ├── misc.html │ │ │ ├── support.html │ │ │ ├── tools.html │ │ │ ├── v3.4beta007.html │ │ │ ├── v3.4beta016.html │ │ │ ├── v3.4beta018.html │ │ │ ├── v3.4beta024.html │ │ │ ├── v3.4beta028.html │ │ │ ├── v3.4beta029.html │ │ │ ├── v3.4beta031.html │ │ │ ├── v3.4beta032.html │ │ │ ├── v3.4beta033.html │ │ │ ├── v3.4beta034.html │ │ │ ├── v3.4beta035.html │ │ │ ├── v3.4beta036.html │ │ │ ├── v3.5.1.html │ │ │ ├── v3.5.2.html │ │ │ ├── v3.5.3.html │ │ │ ├── v3.5.4.html │ │ │ ├── v3.5.5.html │ │ │ ├── v3.5.6-beta.html │ │ │ ├── v3.5.7.html │ │ │ ├── v3.6.0.html │ │ │ ├── v3.6.1.html │ │ │ ├── v3.7.0.html │ │ │ ├── v3.7.0alpha.html │ │ │ ├── v3.7.0beta.html │ │ │ ├── v3.7.0beta2.html │ │ │ ├── v3.7.1.html │ │ │ ├── v3.7.2.html │ │ │ ├── v3.7.3.html │ │ │ ├── v3.7.4.html │ │ │ ├── v3.8.0.html │ │ │ ├── v3.8.1.html │ │ │ ├── v3.8.2.html │ │ │ ├── v3.9.0beta.html │ │ │ ├── v3.9.1.html │ │ │ ├── v3.9.2.html │ │ │ ├── v4.0.0.html │ │ │ ├── v4.0.1.html │ │ │ └── v4.0.2.html │ │ ├── libtiff-4.pc.in │ │ ├── libtiff │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.vc │ │ │ ├── SConstruct │ │ │ ├── libtiff.def │ │ │ ├── libtiff.map │ │ │ ├── libtiffxx.map │ │ │ ├── mkg3states.c │ │ │ ├── t4.h │ │ │ ├── tif_aux.c │ │ │ ├── tif_close.c │ │ │ ├── tif_codec.c │ │ │ ├── tif_color.c │ │ │ ├── tif_compress.c │ │ │ ├── tif_config.h │ │ │ ├── tif_config.h-vms │ │ │ ├── tif_config.h.in │ │ │ ├── tif_config.vc.h │ │ │ ├── tif_config.wince.h │ │ │ ├── tif_dir.c │ │ │ ├── tif_dir.h │ │ │ ├── tif_dirinfo.c │ │ │ ├── tif_dirread.c │ │ │ ├── tif_dirwrite.c │ │ │ ├── tif_dumpmode.c │ │ │ ├── tif_error.c │ │ │ ├── tif_extension.c │ │ │ ├── tif_fax3.c │ │ │ ├── tif_fax3.h │ │ │ ├── tif_fax3sm.c │ │ │ ├── tif_flush.c │ │ │ ├── tif_getimage.c │ │ │ ├── tif_jbig.c │ │ │ ├── tif_jpeg.c │ │ │ ├── tif_jpeg_12.c │ │ │ ├── tif_luv.c │ │ │ ├── tif_lzma.c │ │ │ ├── tif_lzw.c │ │ │ ├── tif_next.c │ │ │ ├── tif_ojpeg.c │ │ │ ├── tif_open.c │ │ │ ├── tif_packbits.c │ │ │ ├── tif_pixarlog.c │ │ │ ├── tif_predict.c │ │ │ ├── tif_predict.h │ │ │ ├── tif_print.c │ │ │ ├── tif_read.c │ │ │ ├── tif_stream.cxx │ │ │ ├── tif_strip.c │ │ │ ├── tif_swab.c │ │ │ ├── tif_thunder.c │ │ │ ├── tif_tile.c │ │ │ ├── tif_unix.c │ │ │ ├── tif_version.c │ │ │ ├── tif_warning.c │ │ │ ├── tif_win32.c │ │ │ ├── tif_write.c │ │ │ ├── tif_zip.c │ │ │ ├── tiff.h │ │ │ ├── tiffconf.h │ │ │ ├── tiffconf.h.in │ │ │ ├── tiffconf.vc.h │ │ │ ├── tiffconf.wince.h │ │ │ ├── tiffio.h │ │ │ ├── tiffio.hxx │ │ │ ├── tiffiop.h │ │ │ ├── tiffvers.h │ │ │ └── uvcode.h │ │ ├── m4 │ │ │ ├── acinclude.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── TIFFClose.3tiff │ │ │ ├── TIFFDataWidth.3tiff │ │ │ ├── TIFFError.3tiff │ │ │ ├── TIFFFieldDataType.3tiff │ │ │ ├── TIFFFieldName.3tiff │ │ │ ├── TIFFFieldPassCount.3tiff │ │ │ ├── TIFFFieldReadCount.3tiff │ │ │ ├── TIFFFieldTag.3tiff │ │ │ ├── TIFFFieldWriteCount.3tiff │ │ │ ├── TIFFFlush.3tiff │ │ │ ├── TIFFGetField.3tiff │ │ │ ├── TIFFOpen.3tiff │ │ │ ├── TIFFPrintDirectory.3tiff │ │ │ ├── TIFFRGBAImage.3tiff │ │ │ ├── TIFFReadDirectory.3tiff │ │ │ ├── TIFFReadEncodedStrip.3tiff │ │ │ ├── TIFFReadEncodedTile.3tiff │ │ │ ├── TIFFReadRGBAImage.3tiff │ │ │ ├── TIFFReadRGBAStrip.3tiff │ │ │ ├── TIFFReadRGBATile.3tiff │ │ │ ├── TIFFReadRawStrip.3tiff │ │ │ ├── TIFFReadRawTile.3tiff │ │ │ ├── TIFFReadScanline.3tiff │ │ │ ├── TIFFReadTile.3tiff │ │ │ ├── TIFFSetDirectory.3tiff │ │ │ ├── TIFFSetField.3tiff │ │ │ ├── TIFFWarning.3tiff │ │ │ ├── TIFFWriteDirectory.3tiff │ │ │ ├── TIFFWriteEncodedStrip.3tiff │ │ │ ├── TIFFWriteEncodedTile.3tiff │ │ │ ├── TIFFWriteRawStrip.3tiff │ │ │ ├── TIFFWriteRawTile.3tiff │ │ │ ├── TIFFWriteScanline.3tiff │ │ │ ├── TIFFWriteTile.3tiff │ │ │ ├── TIFFbuffer.3tiff │ │ │ ├── TIFFcodec.3tiff │ │ │ ├── TIFFcolor.3tiff │ │ │ ├── TIFFmemory.3tiff │ │ │ ├── TIFFquery.3tiff │ │ │ ├── TIFFsize.3tiff │ │ │ ├── TIFFstrip.3tiff │ │ │ ├── TIFFswab.3tiff │ │ │ ├── TIFFtile.3tiff │ │ │ ├── bmp2tiff.1 │ │ │ ├── fax2ps.1 │ │ │ ├── fax2tiff.1 │ │ │ ├── gif2tiff.1 │ │ │ ├── libtiff.3tiff │ │ │ ├── pal2rgb.1 │ │ │ ├── ppm2tiff.1 │ │ │ ├── ras2tiff.1 │ │ │ ├── raw2tiff.1 │ │ │ ├── rgb2ycbcr.1 │ │ │ ├── sgi2tiff.1 │ │ │ ├── thumbnail.1 │ │ │ ├── tiff2bw.1 │ │ │ ├── tiff2pdf.1 │ │ │ ├── tiff2ps.1 │ │ │ ├── tiff2rgba.1 │ │ │ ├── tiffcmp.1 │ │ │ ├── tiffcp.1 │ │ │ ├── tiffcrop.1 │ │ │ ├── tiffdither.1 │ │ │ ├── tiffdump.1 │ │ │ ├── tiffgt.1 │ │ │ ├── tiffinfo.1 │ │ │ ├── tiffmedian.1 │ │ │ ├── tiffset.1 │ │ │ ├── tiffsplit.1 │ │ │ └── tiffsv.1 │ │ ├── nmake.opt │ │ ├── port │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.vc │ │ │ ├── dummy.c │ │ │ ├── getopt.c │ │ │ ├── lfind.c │ │ │ ├── libport.h │ │ │ ├── strcasecmp.c │ │ │ ├── strtoul.c │ │ │ └── strtoull.c │ │ ├── test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ascii_tag.c │ │ │ ├── bmp2tiff_palette.sh │ │ │ ├── bmp2tiff_rgb.sh │ │ │ ├── check_tag.c │ │ │ ├── common.sh │ │ │ ├── custom_dir.c │ │ │ ├── gif2tiff.sh │ │ │ ├── images │ │ │ │ ├── README.txt │ │ │ │ ├── logluv-3c-16b.tiff │ │ │ │ ├── minisblack-1c-16b.tiff │ │ │ │ ├── minisblack-1c-8b.pgm │ │ │ │ ├── minisblack-1c-8b.tiff │ │ │ │ ├── minisblack-2c-8b-alpha.tiff │ │ │ │ ├── miniswhite-1c-1b.pbm │ │ │ │ ├── miniswhite-1c-1b.tiff │ │ │ │ ├── palette-1c-1b.tiff │ │ │ │ ├── palette-1c-4b.tiff │ │ │ │ ├── palette-1c-8b.bmp │ │ │ │ ├── palette-1c-8b.gif │ │ │ │ ├── palette-1c-8b.tiff │ │ │ │ ├── quad-tile.jpg.tiff │ │ │ │ ├── rgb-3c-16b.tiff │ │ │ │ ├── rgb-3c-8b.bmp │ │ │ │ ├── rgb-3c-8b.ppm │ │ │ │ └── rgb-3c-8b.tiff │ │ │ ├── long_tag.c │ │ │ ├── ppm2tiff_pbm.sh │ │ │ ├── ppm2tiff_pgm.sh │ │ │ ├── ppm2tiff_ppm.sh │ │ │ ├── raw_decode.c │ │ │ ├── rewrite_tag.c │ │ │ ├── short_tag.c │ │ │ ├── strip.c │ │ │ ├── strip_rw.c │ │ │ ├── test_arrays.c │ │ │ ├── test_arrays.h │ │ │ ├── tiff2pdf.sh │ │ │ ├── tiff2ps-EPS1.sh │ │ │ ├── tiff2ps-PS1.sh │ │ │ ├── tiff2ps-PS2.sh │ │ │ ├── tiff2ps-PS3.sh │ │ │ ├── tiff2rgba-logluv-3c-16b.sh │ │ │ ├── tiff2rgba-minisblack-1c-16b.sh │ │ │ ├── tiff2rgba-minisblack-1c-8b.sh │ │ │ ├── tiff2rgba-minisblack-2c-8b-alpha.sh │ │ │ ├── tiff2rgba-miniswhite-1c-1b.sh │ │ │ ├── tiff2rgba-palette-1c-1b.sh │ │ │ ├── tiff2rgba-palette-1c-4b.sh │ │ │ ├── tiff2rgba-palette-1c-8b.sh │ │ │ ├── tiff2rgba-quad-tile.jpg.sh │ │ │ ├── tiff2rgba-rgb-3c-16b.sh │ │ │ ├── tiff2rgba-rgb-3c-8b.sh │ │ │ ├── tiffcp-g3-1d-fill.sh │ │ │ ├── tiffcp-g3-1d.sh │ │ │ ├── tiffcp-g3-2d-fill.sh │ │ │ ├── tiffcp-g3-2d.sh │ │ │ ├── tiffcp-g3.sh │ │ │ ├── tiffcp-g4.sh │ │ │ ├── tiffcp-logluv.sh │ │ │ ├── tiffcp-split-join.sh │ │ │ ├── tiffcp-split.sh │ │ │ ├── tiffcp-thumbnail.sh │ │ │ ├── tiffcrop-R90-logluv-3c-16b.sh │ │ │ ├── tiffcrop-R90-minisblack-1c-16b.sh │ │ │ ├── tiffcrop-R90-minisblack-1c-8b.sh │ │ │ ├── tiffcrop-R90-minisblack-2c-8b-alpha.sh │ │ │ ├── tiffcrop-R90-miniswhite-1c-1b.sh │ │ │ ├── tiffcrop-R90-palette-1c-1b.sh │ │ │ ├── tiffcrop-R90-palette-1c-4b.sh │ │ │ ├── tiffcrop-R90-palette-1c-8b.sh │ │ │ ├── tiffcrop-R90-rgb-3c-16b.sh │ │ │ ├── tiffcrop-R90-rgb-3c-8b.sh │ │ │ ├── tiffcrop-doubleflip-logluv-3c-16b.sh │ │ │ ├── tiffcrop-doubleflip-minisblack-1c-16b.sh │ │ │ ├── tiffcrop-doubleflip-minisblack-1c-8b.sh │ │ │ ├── tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh │ │ │ ├── tiffcrop-doubleflip-miniswhite-1c-1b.sh │ │ │ ├── tiffcrop-doubleflip-palette-1c-1b.sh │ │ │ ├── tiffcrop-doubleflip-palette-1c-4b.sh │ │ │ ├── tiffcrop-doubleflip-palette-1c-8b.sh │ │ │ ├── tiffcrop-doubleflip-rgb-3c-16b.sh │ │ │ ├── tiffcrop-doubleflip-rgb-3c-8b.sh │ │ │ ├── tiffcrop-extract-logluv-3c-16b.sh │ │ │ ├── tiffcrop-extract-minisblack-1c-16b.sh │ │ │ ├── tiffcrop-extract-minisblack-1c-8b.sh │ │ │ ├── tiffcrop-extract-minisblack-2c-8b-alpha.sh │ │ │ ├── tiffcrop-extract-miniswhite-1c-1b.sh │ │ │ ├── tiffcrop-extract-palette-1c-1b.sh │ │ │ ├── tiffcrop-extract-palette-1c-4b.sh │ │ │ ├── tiffcrop-extract-palette-1c-8b.sh │ │ │ ├── tiffcrop-extract-rgb-3c-16b.sh │ │ │ ├── tiffcrop-extract-rgb-3c-8b.sh │ │ │ ├── tiffcrop-extractz14-logluv-3c-16b.sh │ │ │ ├── tiffcrop-extractz14-minisblack-1c-16b.sh │ │ │ ├── tiffcrop-extractz14-minisblack-1c-8b.sh │ │ │ ├── tiffcrop-extractz14-minisblack-2c-8b-alpha.sh │ │ │ ├── tiffcrop-extractz14-miniswhite-1c-1b.sh │ │ │ ├── tiffcrop-extractz14-palette-1c-1b.sh │ │ │ ├── tiffcrop-extractz14-palette-1c-4b.sh │ │ │ ├── tiffcrop-extractz14-palette-1c-8b.sh │ │ │ ├── tiffcrop-extractz14-rgb-3c-16b.sh │ │ │ ├── tiffcrop-extractz14-rgb-3c-8b.sh │ │ │ ├── tiffdump.sh │ │ │ ├── tiffinfo.sh │ │ │ └── tifftest.h │ │ └── tools │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.vc │ │ │ ├── bmp2tiff.c │ │ │ ├── fax2ps.c │ │ │ ├── fax2tiff.c │ │ │ ├── gif2tiff.c │ │ │ ├── pal2rgb.c │ │ │ ├── ppm2tiff.c │ │ │ ├── ras2tiff.c │ │ │ ├── rasterfile.h │ │ │ ├── raw2tiff.c │ │ │ ├── rgb2ycbcr.c │ │ │ ├── sgi2tiff.c │ │ │ ├── sgisv.c │ │ │ ├── thumbnail.c │ │ │ ├── tiff2bw.c │ │ │ ├── tiff2pdf.c │ │ │ ├── tiff2ps.c │ │ │ ├── tiff2rgba.c │ │ │ ├── tiffcmp.c │ │ │ ├── tiffcp.c │ │ │ ├── tiffcrop.c │ │ │ ├── tiffdither.c │ │ │ ├── tiffdump.c │ │ │ ├── tiffgt.c │ │ │ ├── tiffinfo.c │ │ │ ├── tiffmedian.c │ │ │ ├── tiffset.c │ │ │ ├── tiffsplit.c │ │ │ └── ycbcr.c │ ├── univ │ │ ├── anybutton.cpp │ │ ├── bmpbuttn.cpp │ │ ├── button.cpp │ │ ├── checkbox.cpp │ │ ├── checklst.cpp │ │ ├── choice.cpp │ │ ├── combobox.cpp │ │ ├── control.cpp │ │ ├── ctrlrend.cpp │ │ ├── descrip.mms │ │ ├── dialog.cpp │ │ ├── framuniv.cpp │ │ ├── gauge.cpp │ │ ├── inpcons.cpp │ │ ├── inphand.cpp │ │ ├── listbox.cpp │ │ ├── menu.cpp │ │ ├── notebook.cpp │ │ ├── radiobox.cpp │ │ ├── radiobut.cpp │ │ ├── scrarrow.cpp │ │ ├── scrolbar.cpp │ │ ├── scrthumb.cpp │ │ ├── settingsuniv.cpp │ │ ├── slider.cpp │ │ ├── spinbutt.cpp │ │ ├── statbmp.cpp │ │ ├── statbox.cpp │ │ ├── statline.cpp │ │ ├── stattext.cpp │ │ ├── statusbr.cpp │ │ ├── stdrend.cpp │ │ ├── textctrl.cpp │ │ ├── tglbtn.cpp │ │ ├── theme.cpp │ │ ├── themes │ │ │ ├── gtk.cpp │ │ │ ├── metal.cpp │ │ │ ├── mono.cpp │ │ │ └── win32.cpp │ │ ├── toolbar.cpp │ │ ├── topluniv.cpp │ │ └── winuniv.cpp │ ├── unix │ │ ├── apptraits.cpp │ │ ├── appunix.cpp │ │ ├── descrip.mms │ │ ├── dialup.cpp │ │ ├── dir.cpp │ │ ├── displayx11.cpp │ │ ├── dlunix.cpp │ │ ├── epolldispatcher.cpp │ │ ├── evtloopunix.cpp │ │ ├── fdiounix.cpp │ │ ├── fontenum.cpp │ │ ├── fontutil.cpp │ │ ├── fswatcher_inotify.cpp │ │ ├── fswatcher_kqueue.cpp │ │ ├── glx11.cpp │ │ ├── joystick.cpp │ │ ├── mediactrl.cpp │ │ ├── mimetype.cpp │ │ ├── net.cpp │ │ ├── snglinst.cpp │ │ ├── sockunix.cpp │ │ ├── sound.cpp │ │ ├── sound_sdl.cpp │ │ ├── stackwalk.cpp │ │ ├── stdpaths.cpp │ │ ├── taskbarx11.cpp │ │ ├── threadpsx.cpp │ │ ├── timerunx.cpp │ │ ├── uiactionx11.cpp │ │ ├── utilsunx.cpp │ │ ├── utilsx11.cpp │ │ └── wakeuppipe.cpp │ ├── x11 │ │ ├── app.cpp │ │ ├── bdiag.xbm │ │ ├── bitmap.cpp │ │ ├── brush.cpp │ │ ├── cdiag.xbm │ │ ├── clipbrd.cpp │ │ ├── colour.cpp │ │ ├── cross.xbm │ │ ├── cursor.cpp │ │ ├── data.cpp │ │ ├── dataobj.cpp │ │ ├── dc.cpp │ │ ├── dcclient.cpp │ │ ├── dcmemory.cpp │ │ ├── dcscreen.cpp │ │ ├── descrip.mms │ │ ├── dnd.cpp │ │ ├── evtloop.cpp │ │ ├── fdiag.xbm │ │ ├── font.cpp │ │ ├── glcanvas.cpp │ │ ├── horiz.xbm │ │ ├── makefile.unx │ │ ├── minifram.cpp │ │ ├── nanox.c │ │ ├── palette.cpp │ │ ├── pango_x.cpp │ │ ├── pen.cpp │ │ ├── popupwin.cpp │ │ ├── region.cpp │ │ ├── reparent.cpp │ │ ├── settings.cpp │ │ ├── textctrl.cpp │ │ ├── toplevel.cpp │ │ ├── utils.cpp │ │ ├── utilsx.cpp │ │ ├── verti.xbm │ │ ├── window.cpp │ │ └── wxwin.xbm │ ├── xml │ │ ├── descrip.mms │ │ └── xml.cpp │ ├── xrc │ │ ├── descrip.mms │ │ ├── xh_activityindicator.cpp │ │ ├── xh_animatctrl.cpp │ │ ├── xh_auinotbk.cpp │ │ ├── xh_auitoolb.cpp │ │ ├── xh_bannerwindow.cpp │ │ ├── xh_bmp.cpp │ │ ├── xh_bmpbt.cpp │ │ ├── xh_bmpcbox.cpp │ │ ├── xh_bttn.cpp │ │ ├── xh_cald.cpp │ │ ├── xh_chckb.cpp │ │ ├── xh_chckl.cpp │ │ ├── xh_choic.cpp │ │ ├── xh_choicbk.cpp │ │ ├── xh_clrpicker.cpp │ │ ├── xh_cmdlinkbn.cpp │ │ ├── xh_collpane.cpp │ │ ├── xh_combo.cpp │ │ ├── xh_comboctrl.cpp │ │ ├── xh_datectrl.cpp │ │ ├── xh_dirpicker.cpp │ │ ├── xh_dlg.cpp │ │ ├── xh_editlbox.cpp │ │ ├── xh_filectrl.cpp │ │ ├── xh_filepicker.cpp │ │ ├── xh_fontpicker.cpp │ │ ├── xh_frame.cpp │ │ ├── xh_gauge.cpp │ │ ├── xh_gdctl.cpp │ │ ├── xh_grid.cpp │ │ ├── xh_html.cpp │ │ ├── xh_htmllbox.cpp │ │ ├── xh_hyperlink.cpp │ │ ├── xh_listb.cpp │ │ ├── xh_listbk.cpp │ │ ├── xh_listc.cpp │ │ ├── xh_mdi.cpp │ │ ├── xh_menu.cpp │ │ ├── xh_notbk.cpp │ │ ├── xh_odcombo.cpp │ │ ├── xh_panel.cpp │ │ ├── xh_propdlg.cpp │ │ ├── xh_radbt.cpp │ │ ├── xh_radbx.cpp │ │ ├── xh_ribbon.cpp │ │ ├── xh_richtext.cpp │ │ ├── xh_scrol.cpp │ │ ├── xh_scwin.cpp │ │ ├── xh_simplebook.cpp │ │ ├── xh_sizer.cpp │ │ ├── xh_slidr.cpp │ │ ├── xh_spin.cpp │ │ ├── xh_split.cpp │ │ ├── xh_srchctrl.cpp │ │ ├── xh_statbar.cpp │ │ ├── xh_stbmp.cpp │ │ ├── xh_stbox.cpp │ │ ├── xh_stlin.cpp │ │ ├── xh_sttxt.cpp │ │ ├── xh_text.cpp │ │ ├── xh_tglbtn.cpp │ │ ├── xh_timectrl.cpp │ │ ├── xh_toolb.cpp │ │ ├── xh_toolbk.cpp │ │ ├── xh_tree.cpp │ │ ├── xh_treebk.cpp │ │ ├── xh_unkwn.cpp │ │ ├── xh_wizrd.cpp │ │ ├── xmladv.cpp │ │ ├── xmlres.cpp │ │ ├── xmlreshandler.cpp │ │ └── xmlrsall.cpp │ └── zlib │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.3 │ │ ├── zlib.h │ │ ├── zlib.map │ │ ├── zlib.pc.in │ │ ├── zutil.c │ │ └── zutil.h │ ├── tests │ ├── Makefile.in │ ├── any │ │ └── anytest.cpp │ ├── archive │ │ ├── archivetest.cpp │ │ ├── archivetest.h │ │ ├── tartest.cpp │ │ └── ziptest.cpp │ ├── arrays │ │ └── arrays.cpp │ ├── asserthelper.cpp │ ├── asserthelper.h │ ├── base64 │ │ └── base64.cpp │ ├── benchmarks │ │ ├── Makefile.in │ │ ├── bench.bkl │ │ ├── bench.cpp │ │ ├── bench.h │ │ ├── bench.vcproj │ │ ├── bench_vc7.sln │ │ ├── bench_vc7_bench.vcproj │ │ ├── bench_vc7_bench_graphics.vcproj │ │ ├── bench_vc7_bench_gui.vcproj │ │ ├── bench_vc8.sln │ │ ├── bench_vc8_bench.vcproj │ │ ├── bench_vc8_bench_graphics.vcproj │ │ ├── bench_vc8_bench_gui.vcproj │ │ ├── bench_vc9.sln │ │ ├── bench_vc9_bench.vcproj │ │ ├── bench_vc9_bench_graphics.vcproj │ │ ├── bench_vc9_bench_gui.vcproj │ │ ├── datetime.cpp │ │ ├── graphics.cpp │ │ ├── htmlparser │ │ │ ├── README │ │ │ ├── htmlpars.cpp │ │ │ ├── htmlpars.h │ │ │ ├── htmltag.cpp │ │ │ └── htmltag.h │ │ ├── htmltest.html │ │ ├── image.cpp │ │ ├── ipcclient.cpp │ │ ├── log.cpp │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.vc │ │ ├── mbconv.cpp │ │ ├── printfbench.cpp │ │ ├── strings.cpp │ │ └── tls.cpp │ ├── cmdline │ │ └── cmdlinetest.cpp │ ├── config │ │ ├── config.cpp │ │ ├── fileconf.cpp │ │ └── regconf.cpp │ ├── controls │ │ ├── bitmapcomboboxtest.cpp │ │ ├── bitmaptogglebuttontest.cpp │ │ ├── bookctrlbasetest.cpp │ │ ├── bookctrlbasetest.h │ │ ├── buttontest.cpp │ │ ├── checkboxtest.cpp │ │ ├── checklistboxtest.cpp │ │ ├── choicebooktest.cpp │ │ ├── choicetest.cpp │ │ ├── comboboxtest.cpp │ │ ├── dataviewctrltest.cpp │ │ ├── datepickerctrltest.cpp │ │ ├── dialogtest.cpp │ │ ├── frametest.cpp │ │ ├── gaugetest.cpp │ │ ├── gridtest.cpp │ │ ├── headerctrltest.cpp │ │ ├── htmllboxtest.cpp │ │ ├── hyperlinkctrltest.cpp │ │ ├── itemcontainertest.cpp │ │ ├── itemcontainertest.h │ │ ├── label.cpp │ │ ├── listbasetest.cpp │ │ ├── listbasetest.h │ │ ├── listbooktest.cpp │ │ ├── listboxtest.cpp │ │ ├── listctrltest.cpp │ │ ├── listviewtest.cpp │ │ ├── markuptest.cpp │ │ ├── notebooktest.cpp │ │ ├── ownerdrawncomboboxtest.cpp │ │ ├── pickerbasetest.cpp │ │ ├── pickerbasetest.h │ │ ├── pickertest.cpp │ │ ├── radioboxtest.cpp │ │ ├── radiobuttontest.cpp │ │ ├── rearrangelisttest.cpp │ │ ├── richtextctrltest.cpp │ │ ├── searchctrltest.cpp │ │ ├── simplebooktest.cpp │ │ ├── slidertest.cpp │ │ ├── spinctrldbltest.cpp │ │ ├── spinctrltest.cpp │ │ ├── textctrltest.cpp │ │ ├── textentrytest.cpp │ │ ├── textentrytest.h │ │ ├── togglebuttontest.cpp │ │ ├── toolbooktest.cpp │ │ ├── treebooktest.cpp │ │ ├── treectrltest.cpp │ │ ├── treelistctrltest.cpp │ │ ├── virtlistctrltest.cpp │ │ ├── webtest.cpp │ │ └── windowtest.cpp │ ├── datetime │ │ └── datetimetest.cpp │ ├── descrip.mms │ ├── drawing │ │ ├── basictest.cpp │ │ ├── drawing.cpp │ │ ├── drawing.h │ │ ├── fonttest.cpp │ │ ├── gcfactory.h │ │ ├── plugin.h │ │ ├── plugindriver.cpp │ │ ├── pluginsample.cpp │ │ ├── readme.txt │ │ ├── references │ │ │ ├── image_test_image_cairo-1.8_2_ref.png │ │ │ ├── image_test_image_cg-10.5_2_ref.png │ │ │ ├── image_test_image_gdiplus-6.1_2_ref.png │ │ │ └── readme.txt │ │ └── testimagefile.h │ ├── dummy.cpp │ ├── events │ │ ├── clone.cpp │ │ ├── evthandler.cpp │ │ ├── evtlooptest.cpp │ │ ├── evtsource.cpp │ │ ├── keyboard.cpp │ │ ├── propagation.cpp │ │ ├── stopwatch.cpp │ │ └── timertest.cpp │ ├── exec │ │ └── exec.cpp │ ├── file │ │ ├── dir.cpp │ │ ├── filefn.cpp │ │ └── filetest.cpp │ ├── filekind │ │ └── filekind.cpp │ ├── filename │ │ └── filenametest.cpp │ ├── filesys │ │ └── filesystest.cpp │ ├── font │ │ └── fonttest.cpp │ ├── fontmap │ │ └── fontmaptest.cpp │ ├── formatconverter │ │ └── formatconvertertest.cpp │ ├── fswatcher │ │ └── fswatchertest.cpp │ ├── geometry │ │ ├── point.cpp │ │ ├── rect.cpp │ │ ├── region.cpp │ │ └── size.cpp │ ├── graphics │ │ ├── affinematrix.cpp │ │ ├── bitmap.cpp │ │ ├── boundingbox.cpp │ │ ├── colour.cpp │ │ ├── ellipsization.cpp │ │ └── measuring.cpp │ ├── hashes │ │ └── hashes.cpp │ ├── horse.ani │ ├── horse.bmp │ ├── horse.cur │ ├── horse.gif │ ├── horse.ico │ ├── horse.jpg │ ├── horse.pcx │ ├── horse.png │ ├── horse.pnm │ ├── horse.tga │ ├── horse.tif │ ├── horse.xpm │ ├── html │ │ ├── htmlparser.cpp │ │ └── htmlwindow.cpp │ ├── image │ │ ├── horse_bicubic_100x100.png │ │ ├── horse_bicubic_150x150.png │ │ ├── horse_bicubic_300x300.png │ │ ├── horse_bicubic_50x50.png │ │ ├── horse_bilinear_100x100.png │ │ ├── horse_bilinear_150x150.png │ │ ├── horse_bilinear_300x300.png │ │ ├── horse_bilinear_50x50.png │ │ ├── horse_box_average_100x100.png │ │ ├── horse_box_average_150x150.png │ │ ├── horse_box_average_300x300.png │ │ ├── horse_box_average_50x50.png │ │ ├── horse_grey.bmp │ │ ├── horse_grey_flipped.bmp │ │ ├── horse_rle4.bmp │ │ ├── horse_rle4_flipped.bmp │ │ ├── horse_rle8.bmp │ │ ├── horse_rle8_flipped.bmp │ │ ├── image.cpp │ │ └── rawbmp.cpp │ ├── interactive │ │ ├── input.cpp │ │ └── output.cpp │ ├── intl │ │ ├── fr │ │ │ ├── internat.mo │ │ │ └── internat.po │ │ └── intltest.cpp │ ├── lists │ │ └── lists.cpp │ ├── log │ │ └── logtest.cpp │ ├── longlong │ │ └── longlongtest.cpp │ ├── makefile.bcc │ ├── makefile.gcc │ ├── makefile.vc │ ├── mbconv │ │ ├── convautotest.cpp │ │ └── mbconvtest.cpp │ ├── menu │ │ ├── accelentry.cpp │ │ └── menu.cpp │ ├── misc │ │ ├── dynamiclib.cpp │ │ ├── environ.cpp │ │ ├── garbage.cpp │ │ ├── guifuncs.cpp │ │ ├── metatest.cpp │ │ ├── misctests.cpp │ │ ├── module.cpp │ │ ├── pathlist.cpp │ │ ├── safearrayconverttest.cpp │ │ ├── selstoretest.cpp │ │ ├── settings.cpp │ │ └── typeinfotest.cpp │ ├── net │ │ ├── ipc.cpp │ │ └── socket.cpp │ ├── regex │ │ ├── reg.test │ │ ├── regex.inc │ │ ├── regex.pl │ │ ├── regextest.cpp │ │ ├── wxreg.test │ │ └── wxregextest.cpp │ ├── runtests.bat │ ├── scopeguard │ │ └── scopeguardtest.cpp │ ├── sizers │ │ ├── boxsizer.cpp │ │ ├── gridsizer.cpp │ │ └── wrapsizer.cpp │ ├── streams │ │ ├── bstream.cpp │ │ ├── bstream.h │ │ ├── datastreamtest.cpp │ │ ├── ffilestream.cpp │ │ ├── fileback.cpp │ │ ├── filestream.cpp │ │ ├── iostreams.cpp │ │ ├── largefile.cpp │ │ ├── memstream.cpp │ │ ├── socketstream.cpp │ │ ├── sstream.cpp │ │ ├── stdstream.cpp │ │ ├── tempfile.cpp │ │ ├── textstreamtest.cpp │ │ └── zlibstream.cpp │ ├── strings │ │ ├── crt.cpp │ │ ├── iostream.cpp │ │ ├── numformatter.cpp │ │ ├── stdstrings.cpp │ │ ├── strings.cpp │ │ ├── tokenizer.cpp │ │ ├── unichar.cpp │ │ ├── unicode.cpp │ │ ├── vararg.cpp │ │ └── vsnprintf.cpp │ ├── test.bkl │ ├── test.cpp │ ├── test.vcxproj │ ├── test.vcxproj.filters │ ├── test_gui.vcxproj │ ├── test_gui.vcxproj.filters │ ├── test_gui_vc10.sln │ ├── test_gui_vc11.sln │ ├── test_gui_vc12.sln │ ├── test_gui_vc14.sln │ ├── test_vc10.sln │ ├── test_vc11.sln │ ├── test_vc12.sln │ ├── test_vc14.sln │ ├── test_vc7_printfbench.vcproj │ ├── test_vc7_test.vcproj │ ├── test_vc7_test_drawing.vcproj │ ├── test_vc7_test_drawingplugin.vcproj │ ├── test_vc7_test_gui.vcproj │ ├── test_vc8_printfbench.vcproj │ ├── test_vc8_test.vcproj │ ├── test_vc8_test_drawing.vcproj │ ├── test_vc8_test_drawingplugin.vcproj │ ├── test_vc8_test_gui.vcproj │ ├── test_vc9_printfbench.vcproj │ ├── test_vc9_test.vcproj │ ├── test_vc9_test_drawing.vcproj │ ├── test_vc9_test_drawingplugin.vcproj │ ├── test_vc9_test_gui.vcproj │ ├── testableframe.cpp │ ├── testableframe.h │ ├── testdata.fc │ ├── testdate.h │ ├── testfile.h │ ├── testimage.h │ ├── testprec.h │ ├── textfile │ │ └── textfiletest.cpp │ ├── thread │ │ ├── atomic.cpp │ │ ├── misc.cpp │ │ ├── queue.cpp │ │ └── tls.cpp │ ├── toplevel │ │ └── toplevel.cpp │ ├── uris │ │ ├── ftp.cpp │ │ ├── uris.cpp │ │ └── url.cpp │ ├── validators │ │ └── valnum.cpp │ ├── vectors │ │ └── vectors.cpp │ ├── weakref │ │ ├── evtconnection.cpp │ │ └── weakref.cpp │ ├── window │ │ ├── clientsize.cpp │ │ └── setsize.cpp │ ├── xlocale │ │ └── xlocale.cpp │ └── xml │ │ ├── xmltest.cpp │ │ └── xrctest.cpp │ ├── utils │ ├── Makefile.in │ ├── emulator │ │ ├── Makefile.in │ │ ├── artwork │ │ │ ├── ipaq01.png │ │ │ └── ipaq02.png │ │ ├── docs │ │ │ ├── readme.txt │ │ │ ├── screen01.jpg │ │ │ └── screen02.jpg │ │ └── src │ │ │ ├── Makefile.in │ │ │ ├── bluegradient.jpg │ │ │ ├── default.wxe │ │ │ ├── emulator.bkl │ │ │ ├── emulator.bmp │ │ │ ├── emulator.cpp │ │ │ ├── emulator.h │ │ │ ├── emulator.ico │ │ │ ├── emulator.rc │ │ │ ├── emulator.xpm │ │ │ ├── emulator_vc7.vcproj │ │ │ ├── emulator_vc8.vcproj │ │ │ ├── emulator_vc9.vcproj │ │ │ ├── ipaq.wxe │ │ │ ├── ipaq01.jpg │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.vc │ │ │ ├── mondrian.ico │ │ │ └── mondrian.xpm │ ├── execmon │ │ ├── Makefile.in │ │ ├── execmon.bkl │ │ ├── execmon.cpp │ │ ├── execmon_vc7.sln │ │ ├── execmon_vc7.vcproj │ │ ├── execmon_vc8.sln │ │ ├── execmon_vc8.vcproj │ │ ├── execmon_vc9.sln │ │ ├── execmon_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ └── makefile.vc │ ├── helpview │ │ ├── Makefile.in │ │ └── src │ │ │ ├── Makefile.in │ │ │ ├── bitmaps │ │ │ ├── helpback.xpm │ │ │ ├── helpbook.xpm │ │ │ ├── helpdown.xpm │ │ │ ├── helpforward.xpm │ │ │ ├── helpicon.xpm │ │ │ ├── helpopen.xpm │ │ │ ├── helpoptions.xpm │ │ │ ├── helppage.xpm │ │ │ ├── helpsidepanel.xpm │ │ │ ├── helpup.xpm │ │ │ └── helpuplevel.xpm │ │ │ ├── client.cpp │ │ │ ├── client.h │ │ │ ├── client.rc │ │ │ ├── helpview-docicon.r │ │ │ ├── helpview-icon.r │ │ │ ├── helpview.bkl │ │ │ ├── helpview.cpp │ │ │ ├── helpview.h │ │ │ ├── helpview.ico │ │ │ ├── helpview.r │ │ │ ├── helpview.rc │ │ │ ├── helpview_vc7.vcproj │ │ │ ├── helpview_vc8.vcproj │ │ │ ├── helpview_vc9.vcproj │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.vc │ │ │ ├── readme.txt │ │ │ ├── remhelp.cpp │ │ │ ├── remhelp.h │ │ │ └── test.zip │ ├── hhp2cached │ │ ├── Makefile.in │ │ ├── hhp2cached.bkl │ │ ├── hhp2cached.cpp │ │ ├── hhp2cached.rc │ │ ├── hhp2cached_vc7.vcproj │ │ ├── hhp2cached_vc8.vcproj │ │ ├── hhp2cached_vc9.vcproj │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ └── makefile.vc │ ├── ifacecheck │ │ ├── README.txt │ │ ├── gccxml.dtd │ │ ├── gccxml.xsl │ │ ├── rungccxml.sh.in │ │ └── src │ │ │ ├── Makefile.in │ │ │ ├── ifacecheck.bkl │ │ │ ├── ifacecheck.cpp │ │ │ ├── ifacecheck_vc7.sln │ │ │ ├── ifacecheck_vc7.vcproj │ │ │ ├── ifacecheck_vc8.sln │ │ │ ├── ifacecheck_vc8.vcproj │ │ │ ├── ifacecheck_vc9.sln │ │ │ ├── ifacecheck_vc9.vcproj │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.vc │ │ │ ├── xmlparser.cpp │ │ │ └── xmlparser.h │ ├── makefile.bcc │ ├── makefile.gcc │ ├── makefile.vc │ ├── screenshotgen │ │ ├── Makefile.in │ │ ├── README.txt │ │ └── src │ │ │ ├── Makefile.in │ │ │ ├── autocapture.cpp │ │ │ ├── autocapture.h │ │ │ ├── bitmaps │ │ │ ├── bell.png │ │ │ ├── dropbuth.png │ │ │ ├── dropbutn.png │ │ │ ├── dropbutp.png │ │ │ ├── sound.png │ │ │ ├── throbber.gif │ │ │ └── wxwin32x32.png │ │ │ ├── customcombo.cpp │ │ │ ├── customcombo.h │ │ │ ├── guiframe.cpp │ │ │ ├── guiframe.h │ │ │ ├── makefile.bcc │ │ │ ├── makefile.gcc │ │ │ ├── makefile.vc │ │ │ ├── richtext.xml │ │ │ ├── screenshot_app.cpp │ │ │ ├── screenshot_app.h │ │ │ ├── screenshot_main.cpp │ │ │ ├── screenshot_main.h │ │ │ ├── screenshotgen.bkl │ │ │ ├── screenshotgen.rc │ │ │ ├── screenshotgen_vc7.sln │ │ │ ├── screenshotgen_vc7.vcproj │ │ │ ├── screenshotgen_vc8.sln │ │ │ ├── screenshotgen_vc8.vcproj │ │ │ ├── screenshotgen_vc9.sln │ │ │ └── screenshotgen_vc9.vcproj │ ├── utils.bkl │ └── wxrc │ │ ├── Makefile.in │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.vc │ │ ├── mondrian.ico │ │ ├── wxrc.bkl │ │ ├── wxrc.cpp │ │ ├── wxrc.rc │ │ ├── wxrc_vc7.vcproj │ │ ├── wxrc_vc8.vcproj │ │ └── wxrc_vc9.vcproj │ ├── version-script.in │ ├── wx-config-inplace.in │ ├── wx-config.in │ └── wxwin.m4 ├── squirrel3 ├── .gitignore ├── COMPILE ├── COPYRIGHT ├── HISTORY ├── Makefile ├── README ├── etc │ ├── minimal.c │ └── test.nut ├── include │ ├── sqstdaux.h │ ├── sqstdblob.h │ ├── sqstdio.h │ ├── sqstdmath.h │ ├── sqstdstring.h │ ├── sqstdsystem.h │ └── squirrel.h ├── samples │ ├── ackermann.nut │ ├── array.nut │ ├── class.nut │ ├── classattributes.nut │ ├── coroutines.nut │ ├── delegation.nut │ ├── fibonacci.nut │ ├── flow.nut │ ├── generators.nut │ ├── hello.nut │ ├── list.nut │ ├── loops.nut │ ├── matrix.nut │ ├── metamethods.nut │ ├── methcall.nut │ └── tailstate.nut ├── sq │ ├── Makefile │ ├── sq.c │ ├── sq.dsp │ └── sq.vcproj ├── sqstdlib │ ├── Makefile │ ├── sqstdaux.cpp │ ├── sqstdblob.cpp │ ├── sqstdblobimpl.h │ ├── sqstdio.cpp │ ├── sqstdlib.dsp │ ├── sqstdlib.vcproj │ ├── sqstdlib.vcxproj │ ├── sqstdmath.cpp │ ├── sqstdrex.cpp │ ├── sqstdrex_old.cpp │ ├── sqstdstream.cpp │ ├── sqstdstream.h │ ├── sqstdstring.cpp │ └── sqstdsystem.cpp ├── squirrel.dsw ├── squirrel.sln └── squirrel │ ├── Makefile │ ├── sqapi.cpp │ ├── sqarray.h │ ├── sqbaselib.cpp │ ├── sqclass.cpp │ ├── sqclass.h │ ├── sqclosure.h │ ├── sqcompiler.cpp │ ├── sqcompiler.h │ ├── sqdebug.cpp │ ├── sqfuncproto.h │ ├── sqfuncstate.cpp │ ├── sqfuncstate.h │ ├── sqlexer.cpp │ ├── sqlexer.h │ ├── sqmem.cpp │ ├── sqobject.cpp │ ├── sqobject.h │ ├── sqopcodes.h │ ├── sqpcheader.h │ ├── sqstate.cpp │ ├── sqstate.h │ ├── sqstring.h │ ├── sqtable.cpp │ ├── sqtable.h │ ├── squirrel.dsp │ ├── squirrel.vcproj │ ├── squirrel.vcxproj │ ├── squserdata.h │ ├── squtils.h │ ├── sqvm.cpp │ └── sqvm.h ├── src ├── Application.cpp ├── Assault.cpp ├── Assault.h ├── Autonomous.cpp ├── BeamProjectile.cpp ├── Beamer.cpp ├── Beamer.h ├── BinDiff.cpp ├── Builder.cpp ├── Bullet.cpp ├── Client.cpp ├── CoordSys-sq.h ├── CoordSys.cpp ├── Defender.cpp ├── Defender.h ├── Destroyer.cpp ├── Destroyer.h ├── Docker.cpp ├── Entity.cpp ├── Frigate.cpp ├── Game.cpp ├── LTurret.cpp ├── LagrangePoint.cpp ├── Mesh.cpp ├── Missile.cpp ├── Observable.cpp ├── Player.cpp ├── RStation.cpp ├── RStation.h ├── Respawn.cpp ├── Respawn.h ├── RoundAstrobj.cpp ├── Scarry.cpp ├── Scarry.h ├── Sceptor.cpp ├── Sceptor.h ├── Server.cpp ├── ShadowMap.cpp ├── Shipyard.cpp ├── SqInitProcess.cpp ├── Universe.cpp ├── VastSpace.rc ├── Warpable.cpp ├── Worker.cpp ├── Worker.h ├── argtok.h ├── arms.cpp ├── astro.cpp ├── astrodraw.cpp ├── audio │ ├── playSound.cpp │ └── wavemixer.cpp ├── avi.c ├── avi.h ├── bitmap.c ├── cmd.cpp ├── cmd_int.h ├── cmddraw.cpp ├── dedsvr.cpp ├── draw │ ├── Assault-Draw.cpp │ ├── Beamer-draw.cpp │ ├── Bullet-draw.cpp │ ├── Defender-Draw.cpp │ ├── Destroyer-draw.cpp │ ├── DrawTextureSphere.cpp │ ├── DrawTextureSphere.h │ ├── GatlingTurret-draw.cpp │ ├── LMissileTurret-draw.cpp │ ├── LTurret-draw.cpp │ ├── MTurret-draw.cpp │ ├── Mesh-draw.cpp │ ├── Missile-draw.cpp │ ├── Player-draw.cpp │ ├── RStation-draw.cpp │ ├── RoundAstrobj-draw.cpp │ ├── Scarry-Draw.cpp │ ├── Sceptor-Draw.cpp │ ├── Shipyard-Draw.cpp │ ├── VBO.cpp │ ├── Warpable-draw.cpp │ ├── Worker-Draw.cpp │ ├── blackbody.cpp │ ├── effects.cpp │ ├── material.cpp │ ├── ring-draw.cpp │ └── war-draw.cpp ├── dstring.cpp ├── galaxy_field.h ├── glsl.c ├── gltestplus.cpp ├── glw │ ├── GLWbuild.cpp │ ├── GLWbutton.cpp │ ├── GLWchart.cpp │ ├── GLWchat.cpp │ ├── GLWentlist.cpp │ ├── GLWentlist.h │ ├── GLWinventory.cpp │ ├── GLWmenu.cpp │ ├── GLWmenu.h │ ├── GLWtaskBar.cpp │ ├── GLWtip.h │ ├── glwindow.cpp │ ├── message.cpp │ └── solarmap.cpp ├── judge.cpp ├── keybind.cpp ├── keybind.h ├── motion.cpp ├── mqo.cpp ├── mqoadapt.cpp ├── mqodraw.cpp ├── noises │ ├── noise_int.h │ ├── sdnoise1234.cpp │ ├── sdnoise1234.h │ ├── simplexnoise1234.cpp │ ├── simplexnoise1234.h │ ├── simplexnoise1234d.cpp │ └── simplexnoise1234d.h ├── png.cpp ├── resource.h ├── serial.cpp ├── serial_util.cpp ├── shield.cpp ├── sqadapt.cpp ├── sqserial.h ├── stellar_file.cpp ├── tefpol3d.cpp ├── teline3d.cpp ├── tent3d_p.h ├── war.cpp └── ysdnmmot.cpp ├── ssd_keywords.txt ├── svn-bullet.sh ├── textures ├── Bullet.bmp ├── Ceres.png ├── Star.jpg ├── attack.png ├── attack.svg ├── attack2.png ├── attack2.svg ├── blast.jpg ├── blast.pdn ├── bricks.bmp ├── bricks_hgt.bmp ├── building3.jpg ├── building3mask.bmp ├── buildman.png ├── buildman.svg ├── cameras.png ├── cameras.svg ├── cammode.png ├── cammode.svg ├── chart.png ├── chart.svg ├── chat.png ├── chat.svg ├── cloud.jpg ├── commands.png ├── commands.svg ├── control.png ├── control.svg ├── control2.png ├── control2.svg ├── dock.png ├── dock.svg ├── dockman.png ├── dockman.svg ├── earth.jpg ├── earth_bump.jpg ├── earth_lights.png ├── eject.png ├── eject.svg ├── enceladus.jpg ├── entlist.png ├── entlist.svg ├── exit.png ├── exit.svg ├── focus.png ├── focus.svg ├── forceattack.png ├── forceattack.svg ├── forceattack2.png ├── forceattack2.svg ├── gasgiant.jpg ├── grass.jpg ├── halt.png ├── halt.svg ├── hydrogen.png ├── hydrogen.svg ├── lavaplanet.jpg ├── mars_1k_color.jpg ├── moon.png ├── moonbump.png ├── move.png ├── move.svg ├── move2.png ├── move2.svg ├── movepath.png ├── movepath.svg ├── muzzle.bmp ├── muzzle.bmp.a.bmp ├── navlight.png ├── navlight.svg ├── noise.jpg ├── overlay.png ├── overlay.svg ├── oxygen.png ├── oxygen.svg ├── pause.jpg ├── pause.png ├── pause.svg ├── perlin.jpg ├── playercams.png ├── playercams.svg ├── pointer.bmp ├── resetrot.png ├── resetrot.svg ├── ricochet.bmp ├── saturn_ring_back.bmp ├── saturn_ring_front.bmp ├── showorbit.png ├── showorbit.svg ├── smoke.bmp ├── smoke.bmp.a.bmp ├── smoke.xcf ├── smoke2.jpg ├── smoke2.jpg.a.jpg ├── smoke2.png ├── smokefire.bmp ├── smokefire.bmp.a.bmp ├── solarmap.png ├── solarmap.svg ├── spark.bmp ├── spark.pdn ├── tutor_end.png ├── tutor_end.svg ├── tutor_proceed.png ├── tutor_proceed.svg ├── tutor_restart.png ├── tutor_restart.svg ├── undock.png ├── undock.svg ├── unpause.png ├── water.png └── water.svg ├── vs.svg └── zlib ├── .gitignore ├── ChangeLog ├── FAQ ├── INDEX ├── Makefile ├── Makefile.in ├── README ├── adler32.c ├── algorithm.txt ├── amiga ├── Makefile.pup └── Makefile.sas ├── as400 ├── bndsrc ├── compile.clp ├── readme.txt └── zlib.inc ├── compress.c ├── configure ├── contrib ├── README.contrib ├── ada │ ├── buffer_demo.adb │ ├── mtest.adb │ ├── read.adb │ ├── readme.txt │ ├── test.adb │ ├── zlib-streams.adb │ ├── zlib-streams.ads │ ├── zlib-thin.adb │ ├── zlib-thin.ads │ ├── zlib.adb │ ├── zlib.ads │ └── zlib.gpr ├── asm586 │ ├── README.586 │ └── match.S ├── asm686 │ ├── README.686 │ └── match.S ├── blast │ ├── Makefile │ ├── README │ ├── blast.c │ ├── blast.h │ ├── test.pk │ └── test.txt ├── delphi │ ├── ZLib.pas │ ├── ZLibConst.pas │ ├── readme.txt │ └── zlibd32.mak ├── dotzlib │ ├── DotZLib.build │ ├── DotZLib.chm │ ├── DotZLib.sln │ ├── DotZLib │ │ ├── AssemblyInfo.cs │ │ ├── ChecksumImpl.cs │ │ ├── CircularBuffer.cs │ │ ├── CodecBase.cs │ │ ├── Deflater.cs │ │ ├── DotZLib.cs │ │ ├── DotZLib.csproj │ │ ├── GZipStream.cs │ │ ├── Inflater.cs │ │ └── UnitTests.cs │ ├── LICENSE_1_0.txt │ └── readme.txt ├── infback9 │ ├── README │ ├── infback9.c │ ├── infback9.h │ ├── inffix9.h │ ├── inflate9.h │ ├── inftree9.c │ └── inftree9.h ├── inflate86 │ ├── inffas86.c │ └── inffast.S ├── iostream │ ├── test.cpp │ ├── zfstream.cpp │ └── zfstream.h ├── iostream2 │ ├── zstream.h │ └── zstream_test.cpp ├── iostream3 │ ├── README │ ├── TODO │ ├── test.cc │ ├── zfstream.cc │ └── zfstream.h ├── masm686 │ └── match.asm ├── masmx64 │ ├── bld_ml64.bat │ ├── gvmat64.asm │ ├── gvmat64.obj │ ├── inffas8664.c │ ├── inffasx64.asm │ ├── inffasx64.obj │ └── readme.txt ├── masmx86 │ ├── bld_ml32.bat │ ├── gvmat32.asm │ ├── gvmat32.obj │ ├── gvmat32c.c │ ├── inffas32.asm │ ├── inffas32.obj │ ├── mkasm.bat │ └── readme.txt ├── minizip │ ├── ChangeLogUnzip │ ├── Makefile │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── miniunz.c │ ├── minizip.c │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── pascal │ ├── example.pas │ ├── readme.txt │ ├── zlibd32.mak │ └── zlibpas.pas ├── puff │ ├── Makefile │ ├── README │ ├── puff.c │ ├── puff.h │ └── zeros.raw ├── testzlib │ ├── testzlib.c │ └── testzlib.txt ├── untgz │ ├── Makefile │ ├── Makefile.msc │ └── untgz.c └── vstudio │ ├── readme.txt │ ├── vc7 │ ├── miniunz.vcproj │ ├── minizip.vcproj │ ├── testzlib.vcproj │ ├── zlib.rc │ ├── zlibstat.vcproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcproj │ └── vc8 │ ├── miniunz.vcproj │ ├── minizip.vcproj │ ├── testzlib.vcproj │ ├── testzlibdll.vcproj │ ├── zlib.rc │ ├── zlibstat.vcproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcproj ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── example.c ├── examples ├── README.examples ├── fitblk.c ├── gun.c ├── gzappend.c ├── gzjoin.c ├── gzlog.c ├── gzlog.h ├── zlib_how.html ├── zpipe.c └── zran.c ├── gzio.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── minigzip.c ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── old ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def ├── visual-basic.txt └── zlib.html ├── projects ├── README.projects ├── VC2008 │ └── zlib.vcproj ├── VC2012 │ └── zlib.vcxproj └── visualc6 │ ├── README.txt │ ├── example.dsp │ ├── minigzip.dsp │ ├── zlib.dsp │ ├── zlib.dsw │ └── zlib.sln ├── qnx └── package.qpg ├── trees.c ├── trees.h ├── uncompr.c ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.emx ├── Makefile.gcc ├── Makefile.msc ├── VisualC.txt ├── zlib.def └── zlib1.rc ├── zconf.h ├── zconf.in.h ├── zlib-1.2.3.tar.gz ├── zlib.3 ├── zlib.h ├── zutil.c └── zutil.h /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/.hgeol -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/.hgignore -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/GNUmakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/README.md -------------------------------------------------------------------------------- /Squirrel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/Squirrel.xml -------------------------------------------------------------------------------- /VC2015/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/VC2015/autoexp.txt -------------------------------------------------------------------------------- /VC2015/gltestplus.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/VC2015/gltestplus.def -------------------------------------------------------------------------------- /VC2015/gltestplus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/VC2015/gltestplus.sln -------------------------------------------------------------------------------- /VC2015/gltestplus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/VC2015/gltestplus.vcxproj -------------------------------------------------------------------------------- /autoexec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/autoexec.cfg -------------------------------------------------------------------------------- /clib/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/GNUmakefile -------------------------------------------------------------------------------- /clib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/ReadMe.txt -------------------------------------------------------------------------------- /clib/VC2008/clib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/VC2008/clib.vcproj -------------------------------------------------------------------------------- /clib/VC2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/VC2008/stdint.h -------------------------------------------------------------------------------- /clib/VC2012/clib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/VC2012/clib.vcxproj -------------------------------------------------------------------------------- /clib/clib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/clib.vcproj -------------------------------------------------------------------------------- /clib/include/GL/ch05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/GL/ch05.html -------------------------------------------------------------------------------- /clib/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/GL/glext.h -------------------------------------------------------------------------------- /clib/include/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/GL/glut.h -------------------------------------------------------------------------------- /clib/include/clib/amat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/amat2.h -------------------------------------------------------------------------------- /clib/include/clib/amat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/amat3.h -------------------------------------------------------------------------------- /clib/include/clib/amat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/amat4.h -------------------------------------------------------------------------------- /clib/include/clib/aquat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/aquat.h -------------------------------------------------------------------------------- /clib/include/clib/avec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/avec3.h -------------------------------------------------------------------------------- /clib/include/clib/avec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/avec4.h -------------------------------------------------------------------------------- /clib/include/clib/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/c.h -------------------------------------------------------------------------------- /clib/include/clib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/crc32.h -------------------------------------------------------------------------------- /clib/include/clib/dstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/dstr.h -------------------------------------------------------------------------------- /clib/include/clib/rseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/rseq.h -------------------------------------------------------------------------------- /clib/include/clib/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/include/clib/stats.h -------------------------------------------------------------------------------- /clib/src/UnZip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/UnZip.c -------------------------------------------------------------------------------- /clib/src/UniformLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/UniformLoader.c -------------------------------------------------------------------------------- /clib/src/amat3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/amat3.c -------------------------------------------------------------------------------- /clib/src/amat4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/amat4.c -------------------------------------------------------------------------------- /clib/src/aquat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/aquat.c -------------------------------------------------------------------------------- /clib/src/aquatrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/aquatrot.c -------------------------------------------------------------------------------- /clib/src/asm/testmove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/asm/testmove.h -------------------------------------------------------------------------------- /clib/src/asm/testmove.nsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/asm/testmove.nsm -------------------------------------------------------------------------------- /clib/src/avec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/avec3.c -------------------------------------------------------------------------------- /clib/src/cfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/cfloat.c -------------------------------------------------------------------------------- /clib/src/circut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/circut.c -------------------------------------------------------------------------------- /clib/src/colseq/cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/colseq/cs.c -------------------------------------------------------------------------------- /clib/src/colseq/cs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/colseq/cs2.c -------------------------------------------------------------------------------- /clib/src/colseq/cs2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/colseq/cs2x.c -------------------------------------------------------------------------------- /clib/src/colseq/cs2xcut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/colseq/cs2xcut.c -------------------------------------------------------------------------------- /clib/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/crc32.c -------------------------------------------------------------------------------- /clib/src/dstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/dstr.c -------------------------------------------------------------------------------- /clib/src/gl/cull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/gl/cull.c -------------------------------------------------------------------------------- /clib/src/gl/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/gl/gldraw.c -------------------------------------------------------------------------------- /clib/src/gl/glfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/gl/glfont.c -------------------------------------------------------------------------------- /clib/src/gl/wgltext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/gl/wgltext.c -------------------------------------------------------------------------------- /clib/src/lzw/lzc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/lzw/lzc.c -------------------------------------------------------------------------------- /clib/src/lzw/lzuc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/lzw/lzuc.c -------------------------------------------------------------------------------- /clib/src/rseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/rseq.c -------------------------------------------------------------------------------- /clib/src/suf/suf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/suf/suf.c -------------------------------------------------------------------------------- /clib/src/suf/sufdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/suf/sufdraw.c -------------------------------------------------------------------------------- /clib/src/suf/sufloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/suf/sufloc.c -------------------------------------------------------------------------------- /clib/src/suf/sufreloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/suf/sufreloc.c -------------------------------------------------------------------------------- /clib/src/suf/sufsrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/suf/sufsrc.c -------------------------------------------------------------------------------- /clib/src/suf/sufvbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/suf/sufvbo.c -------------------------------------------------------------------------------- /clib/src/timemeas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/timemeas.c -------------------------------------------------------------------------------- /clib/src/wavsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/src/wavsound.c -------------------------------------------------------------------------------- /clib/tests/UnZip_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/tests/UnZip_test.c -------------------------------------------------------------------------------- /clib/tests/crc32_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/tests/crc32_test.c -------------------------------------------------------------------------------- /clib/tests/rseq_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/clib/tests/rseq_test.c -------------------------------------------------------------------------------- /cpplib/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/GNUmakefile -------------------------------------------------------------------------------- /cpplib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/ReadMe.txt -------------------------------------------------------------------------------- /cpplib/cpplib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/cpplib.vcproj -------------------------------------------------------------------------------- /cpplib/src/dstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/src/dstring.cpp -------------------------------------------------------------------------------- /cpplib/src/gl/cull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/src/gl/cull.cpp -------------------------------------------------------------------------------- /cpplib/src/mat3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/src/mat3.cpp -------------------------------------------------------------------------------- /cpplib/src/mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/src/mat4.cpp -------------------------------------------------------------------------------- /cpplib/src/quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/src/quat.cpp -------------------------------------------------------------------------------- /cpplib/src/vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/src/vec3.cpp -------------------------------------------------------------------------------- /cpplib/src/vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/src/vec4.cpp -------------------------------------------------------------------------------- /cpplib/tests/dstrtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/cpplib/tests/dstrtest.cpp -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/credits.txt -------------------------------------------------------------------------------- /data/Ceres.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/Ceres.ssd -------------------------------------------------------------------------------- /data/Earth.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/Earth.ssd -------------------------------------------------------------------------------- /data/Jupiter.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/Jupiter.ssd -------------------------------------------------------------------------------- /data/Mars.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/Mars.ssd -------------------------------------------------------------------------------- /data/Mercury.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/Mercury.ssd -------------------------------------------------------------------------------- /data/Saturn.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/Saturn.ssd -------------------------------------------------------------------------------- /data/Venus.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/Venus.ssd -------------------------------------------------------------------------------- /data/galaxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/galaxy.png -------------------------------------------------------------------------------- /data/sol.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/sol.ssd -------------------------------------------------------------------------------- /data/space.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/space.ssd -------------------------------------------------------------------------------- /data/space_debug.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/space_debug.ssd -------------------------------------------------------------------------------- /data/syl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/data/syl.txt -------------------------------------------------------------------------------- /dedsvr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/dedsvr.cfg -------------------------------------------------------------------------------- /git-bullet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/git-bullet.sh -------------------------------------------------------------------------------- /gp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/gp.ico -------------------------------------------------------------------------------- /images/gltestss0189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/images/gltestss0189.jpg -------------------------------------------------------------------------------- /images/gltestss0230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/images/gltestss0230.jpg -------------------------------------------------------------------------------- /images/gltestss0276.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/images/gltestss0276.jpg -------------------------------------------------------------------------------- /include/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Application.h -------------------------------------------------------------------------------- /include/Autonomous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Autonomous.h -------------------------------------------------------------------------------- /include/BeamProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/BeamProjectile.h -------------------------------------------------------------------------------- /include/BinDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/BinDiff.h -------------------------------------------------------------------------------- /include/Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Builder.h -------------------------------------------------------------------------------- /include/Bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Bullet.h -------------------------------------------------------------------------------- /include/ClientMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/ClientMessage.h -------------------------------------------------------------------------------- /include/CoordSys-find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/CoordSys-find.h -------------------------------------------------------------------------------- /include/CoordSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/CoordSys.h -------------------------------------------------------------------------------- /include/Docker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Docker.h -------------------------------------------------------------------------------- /include/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Entity.h -------------------------------------------------------------------------------- /include/EntityCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/EntityCommand.h -------------------------------------------------------------------------------- /include/EntityRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/EntityRegister.h -------------------------------------------------------------------------------- /include/ExplosiveBullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/ExplosiveBullet.h -------------------------------------------------------------------------------- /include/Frigate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Frigate.h -------------------------------------------------------------------------------- /include/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Game.h -------------------------------------------------------------------------------- /include/GetFov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/GetFov.h -------------------------------------------------------------------------------- /include/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Inventory.h -------------------------------------------------------------------------------- /include/LTurret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/LTurret.h -------------------------------------------------------------------------------- /include/MTurret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/MTurret.h -------------------------------------------------------------------------------- /include/Mesh-forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Mesh-forward.h -------------------------------------------------------------------------------- /include/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Mesh.h -------------------------------------------------------------------------------- /include/Missile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Missile.h -------------------------------------------------------------------------------- /include/Model-forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Model-forward.h -------------------------------------------------------------------------------- /include/ModelEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/ModelEntity.h -------------------------------------------------------------------------------- /include/Motion-forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Motion-forward.h -------------------------------------------------------------------------------- /include/Observable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Observable.h -------------------------------------------------------------------------------- /include/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Player.h -------------------------------------------------------------------------------- /include/RoundAstrobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/RoundAstrobj.h -------------------------------------------------------------------------------- /include/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Server.h -------------------------------------------------------------------------------- /include/Shipyard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Shipyard.h -------------------------------------------------------------------------------- /include/SqInitProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/SqInitProcess.h -------------------------------------------------------------------------------- /include/StarEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/StarEnum.h -------------------------------------------------------------------------------- /include/Universe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Universe.h -------------------------------------------------------------------------------- /include/VariantRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/VariantRegister.h -------------------------------------------------------------------------------- /include/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Viewer.h -------------------------------------------------------------------------------- /include/Warpable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/Warpable.h -------------------------------------------------------------------------------- /include/antiglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/antiglut.h -------------------------------------------------------------------------------- /include/arms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/arms.h -------------------------------------------------------------------------------- /include/astro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/astro.h -------------------------------------------------------------------------------- /include/astro_star.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/astro_star.h -------------------------------------------------------------------------------- /include/astrodef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/astrodef.h -------------------------------------------------------------------------------- /include/astrodraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/astrodraw.h -------------------------------------------------------------------------------- /include/audio/playSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/audio/playSound.h -------------------------------------------------------------------------------- /include/audio/wavemixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/audio/wavemixer.h -------------------------------------------------------------------------------- /include/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/bitmap.h -------------------------------------------------------------------------------- /include/btadapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/btadapt.h -------------------------------------------------------------------------------- /include/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/cmd.h -------------------------------------------------------------------------------- /include/draw/HDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/HDR.h -------------------------------------------------------------------------------- /include/draw/ShaderBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/ShaderBind.h -------------------------------------------------------------------------------- /include/draw/ShadowMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/ShadowMap.h -------------------------------------------------------------------------------- /include/draw/VBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/VBO.h -------------------------------------------------------------------------------- /include/draw/WarDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/WarDraw.h -------------------------------------------------------------------------------- /include/draw/blackbody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/blackbody.h -------------------------------------------------------------------------------- /include/draw/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/effects.h -------------------------------------------------------------------------------- /include/draw/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/material.h -------------------------------------------------------------------------------- /include/draw/mqoadapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/mqoadapt.h -------------------------------------------------------------------------------- /include/draw/ring-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/draw/ring-draw.h -------------------------------------------------------------------------------- /include/dstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/dstring.h -------------------------------------------------------------------------------- /include/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/export.h -------------------------------------------------------------------------------- /include/glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glsl.h -------------------------------------------------------------------------------- /include/glstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glstack.h -------------------------------------------------------------------------------- /include/glw/GLWbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glw/GLWbutton.h -------------------------------------------------------------------------------- /include/glw/GLWchart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glw/GLWchart.h -------------------------------------------------------------------------------- /include/glw/GLWchat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glw/GLWchat.h -------------------------------------------------------------------------------- /include/glw/GLWtaskBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glw/GLWtaskBar.h -------------------------------------------------------------------------------- /include/glw/PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glw/PopupMenu.h -------------------------------------------------------------------------------- /include/glw/glwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glw/glwindow.h -------------------------------------------------------------------------------- /include/glw/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/glw/message.h -------------------------------------------------------------------------------- /include/judge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/judge.h -------------------------------------------------------------------------------- /include/libmotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/libmotion.h -------------------------------------------------------------------------------- /include/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/motion.h -------------------------------------------------------------------------------- /include/mqo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/mqo.h -------------------------------------------------------------------------------- /include/msg/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/msg/Message.h -------------------------------------------------------------------------------- /include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/serial.h -------------------------------------------------------------------------------- /include/serial_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/serial_util.h -------------------------------------------------------------------------------- /include/shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/shield.h -------------------------------------------------------------------------------- /include/sqadapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/sqadapt.h -------------------------------------------------------------------------------- /include/stellar_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/stellar_file.h -------------------------------------------------------------------------------- /include/tefpol3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/tefpol3d.h -------------------------------------------------------------------------------- /include/tent3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/tent3d.h -------------------------------------------------------------------------------- /include/tent3d_forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/tent3d_forward.h -------------------------------------------------------------------------------- /include/war.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/war.h -------------------------------------------------------------------------------- /include/ysdnmmot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/ysdnmmot.h -------------------------------------------------------------------------------- /include/yssurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/include/yssurf.h -------------------------------------------------------------------------------- /jpeg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/Makefile.am -------------------------------------------------------------------------------- /jpeg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/Makefile.in -------------------------------------------------------------------------------- /jpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/README -------------------------------------------------------------------------------- /jpeg/VC2008/jpeg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/VC2008/jpeg.vcproj -------------------------------------------------------------------------------- /jpeg/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/aclocal.m4 -------------------------------------------------------------------------------- /jpeg/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/ar-lib -------------------------------------------------------------------------------- /jpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/cderror.h -------------------------------------------------------------------------------- /jpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/cdjpeg.c -------------------------------------------------------------------------------- /jpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/cdjpeg.h -------------------------------------------------------------------------------- /jpeg/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/cjpeg.1 -------------------------------------------------------------------------------- /jpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/cjpeg.c -------------------------------------------------------------------------------- /jpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/ckconfig.c -------------------------------------------------------------------------------- /jpeg/coderules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/coderules.txt -------------------------------------------------------------------------------- /jpeg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/config.guess -------------------------------------------------------------------------------- /jpeg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/config.sub -------------------------------------------------------------------------------- /jpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/configure -------------------------------------------------------------------------------- /jpeg/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/configure.ac -------------------------------------------------------------------------------- /jpeg/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/depcomp -------------------------------------------------------------------------------- /jpeg/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/djpeg.1 -------------------------------------------------------------------------------- /jpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/djpeg.c -------------------------------------------------------------------------------- /jpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/example.c -------------------------------------------------------------------------------- /jpeg/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/filelist.txt -------------------------------------------------------------------------------- /jpeg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/install-sh -------------------------------------------------------------------------------- /jpeg/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/install.txt -------------------------------------------------------------------------------- /jpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jaricom.c -------------------------------------------------------------------------------- /jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcapimin.c -------------------------------------------------------------------------------- /jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcapistd.c -------------------------------------------------------------------------------- /jpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcarith.c -------------------------------------------------------------------------------- /jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jccoefct.c -------------------------------------------------------------------------------- /jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jccolor.c -------------------------------------------------------------------------------- /jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jchuff.c -------------------------------------------------------------------------------- /jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcinit.c -------------------------------------------------------------------------------- /jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcmainct.c -------------------------------------------------------------------------------- /jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcmarker.c -------------------------------------------------------------------------------- /jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcmaster.c -------------------------------------------------------------------------------- /jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcomapi.c -------------------------------------------------------------------------------- /jpeg/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.bcc -------------------------------------------------------------------------------- /jpeg/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.cfg -------------------------------------------------------------------------------- /jpeg/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.dj -------------------------------------------------------------------------------- /jpeg/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.mac -------------------------------------------------------------------------------- /jpeg/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.manx -------------------------------------------------------------------------------- /jpeg/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.mc6 -------------------------------------------------------------------------------- /jpeg/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.sas -------------------------------------------------------------------------------- /jpeg/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.st -------------------------------------------------------------------------------- /jpeg/jconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.txt -------------------------------------------------------------------------------- /jpeg/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.vc -------------------------------------------------------------------------------- /jpeg/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.vms -------------------------------------------------------------------------------- /jpeg/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jconfig.wat -------------------------------------------------------------------------------- /jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcparam.c -------------------------------------------------------------------------------- /jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcprepct.c -------------------------------------------------------------------------------- /jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jcsample.c -------------------------------------------------------------------------------- /jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jctrans.c -------------------------------------------------------------------------------- /jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdapimin.c -------------------------------------------------------------------------------- /jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdapistd.c -------------------------------------------------------------------------------- /jpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdarith.c -------------------------------------------------------------------------------- /jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdatadst.c -------------------------------------------------------------------------------- /jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdcolor.c -------------------------------------------------------------------------------- /jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdct.h -------------------------------------------------------------------------------- /jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdhuff.c -------------------------------------------------------------------------------- /jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdinput.c -------------------------------------------------------------------------------- /jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdmainct.c -------------------------------------------------------------------------------- /jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdmarker.c -------------------------------------------------------------------------------- /jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdmaster.c -------------------------------------------------------------------------------- /jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdmerge.c -------------------------------------------------------------------------------- /jpeg/jdosabcc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdosabcc.obj -------------------------------------------------------------------------------- /jpeg/jdosamsc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdosamsc.obj -------------------------------------------------------------------------------- /jpeg/jdosaobj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdosaobj.txt -------------------------------------------------------------------------------- /jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdpostct.c -------------------------------------------------------------------------------- /jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdsample.c -------------------------------------------------------------------------------- /jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jdtrans.c -------------------------------------------------------------------------------- /jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jerror.c -------------------------------------------------------------------------------- /jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jerror.h -------------------------------------------------------------------------------- /jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jfdctint.c -------------------------------------------------------------------------------- /jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jidctflt.c -------------------------------------------------------------------------------- /jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jidctfst.c -------------------------------------------------------------------------------- /jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jidctint.c -------------------------------------------------------------------------------- /jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jinclude.h -------------------------------------------------------------------------------- /jpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemansi.c -------------------------------------------------------------------------------- /jpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemdos.c -------------------------------------------------------------------------------- /jpeg/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemdosa.asm -------------------------------------------------------------------------------- /jpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemmac.c -------------------------------------------------------------------------------- /jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /jpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemname.c -------------------------------------------------------------------------------- /jpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemnobs.c -------------------------------------------------------------------------------- /jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmemsys.h -------------------------------------------------------------------------------- /jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /jpeg/jpeg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jpeg.vcxproj -------------------------------------------------------------------------------- /jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jpegint.h -------------------------------------------------------------------------------- /jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jpeglib.h -------------------------------------------------------------------------------- /jpeg/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jpegtran.1 -------------------------------------------------------------------------------- /jpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jpegtran.c -------------------------------------------------------------------------------- /jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jquant1.c -------------------------------------------------------------------------------- /jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jquant2.c -------------------------------------------------------------------------------- /jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jutils.c -------------------------------------------------------------------------------- /jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/jversion.h -------------------------------------------------------------------------------- /jpeg/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_9.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /jpeg/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/libjpeg.txt -------------------------------------------------------------------------------- /jpeg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/ltmain.sh -------------------------------------------------------------------------------- /jpeg/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makcjpeg.st -------------------------------------------------------------------------------- /jpeg/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makdjpeg.st -------------------------------------------------------------------------------- /jpeg/makeadsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makeadsw.vc6 -------------------------------------------------------------------------------- /jpeg/makeasln.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makeasln.v10 -------------------------------------------------------------------------------- /jpeg/makecdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makecdep.vc6 -------------------------------------------------------------------------------- /jpeg/makecdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makecdsp.vc6 -------------------------------------------------------------------------------- /jpeg/makecfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makecfil.v10 -------------------------------------------------------------------------------- /jpeg/makecmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makecmak.vc6 -------------------------------------------------------------------------------- /jpeg/makecvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makecvcx.v10 -------------------------------------------------------------------------------- /jpeg/makeddep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makeddep.vc6 -------------------------------------------------------------------------------- /jpeg/makeddsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makeddsp.vc6 -------------------------------------------------------------------------------- /jpeg/makedfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makedfil.v10 -------------------------------------------------------------------------------- /jpeg/makedmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makedmak.vc6 -------------------------------------------------------------------------------- /jpeg/makedvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makedvcx.v10 -------------------------------------------------------------------------------- /jpeg/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.ansi -------------------------------------------------------------------------------- /jpeg/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.bcc -------------------------------------------------------------------------------- /jpeg/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.dj -------------------------------------------------------------------------------- /jpeg/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.manx -------------------------------------------------------------------------------- /jpeg/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.mc6 -------------------------------------------------------------------------------- /jpeg/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.mms -------------------------------------------------------------------------------- /jpeg/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.sas -------------------------------------------------------------------------------- /jpeg/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.unix -------------------------------------------------------------------------------- /jpeg/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.vc -------------------------------------------------------------------------------- /jpeg/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.vms -------------------------------------------------------------------------------- /jpeg/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makefile.wat -------------------------------------------------------------------------------- /jpeg/makejdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makejdep.vc6 -------------------------------------------------------------------------------- /jpeg/makejdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makejdsp.vc6 -------------------------------------------------------------------------------- /jpeg/makejdsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makejdsw.vc6 -------------------------------------------------------------------------------- /jpeg/makejfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makejfil.v10 -------------------------------------------------------------------------------- /jpeg/makejmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makejmak.vc6 -------------------------------------------------------------------------------- /jpeg/makejsln.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makejsln.v10 -------------------------------------------------------------------------------- /jpeg/makejvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makejvcx.v10 -------------------------------------------------------------------------------- /jpeg/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makeproj.mac -------------------------------------------------------------------------------- /jpeg/makerdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makerdep.vc6 -------------------------------------------------------------------------------- /jpeg/makerdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makerdsp.vc6 -------------------------------------------------------------------------------- /jpeg/makerfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makerfil.v10 -------------------------------------------------------------------------------- /jpeg/makermak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makermak.vc6 -------------------------------------------------------------------------------- /jpeg/makervcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makervcx.v10 -------------------------------------------------------------------------------- /jpeg/maketdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/maketdep.vc6 -------------------------------------------------------------------------------- /jpeg/maketdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/maketdsp.vc6 -------------------------------------------------------------------------------- /jpeg/maketfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/maketfil.v10 -------------------------------------------------------------------------------- /jpeg/maketmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/maketmak.vc6 -------------------------------------------------------------------------------- /jpeg/maketvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/maketvcx.v10 -------------------------------------------------------------------------------- /jpeg/makewdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makewdep.vc6 -------------------------------------------------------------------------------- /jpeg/makewdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makewdsp.vc6 -------------------------------------------------------------------------------- /jpeg/makewfil.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makewfil.v10 -------------------------------------------------------------------------------- /jpeg/makewmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makewmak.vc6 -------------------------------------------------------------------------------- /jpeg/makewvcx.v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makewvcx.v10 -------------------------------------------------------------------------------- /jpeg/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makljpeg.st -------------------------------------------------------------------------------- /jpeg/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/maktjpeg.st -------------------------------------------------------------------------------- /jpeg/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/makvms.opt -------------------------------------------------------------------------------- /jpeg/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/missing -------------------------------------------------------------------------------- /jpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdbmp.c -------------------------------------------------------------------------------- /jpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdcolmap.c -------------------------------------------------------------------------------- /jpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdgif.c -------------------------------------------------------------------------------- /jpeg/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdjpgcom.1 -------------------------------------------------------------------------------- /jpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdjpgcom.c -------------------------------------------------------------------------------- /jpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdppm.c -------------------------------------------------------------------------------- /jpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdrle.c -------------------------------------------------------------------------------- /jpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdswitch.c -------------------------------------------------------------------------------- /jpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/rdtarga.c -------------------------------------------------------------------------------- /jpeg/readme.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/readme.dos -------------------------------------------------------------------------------- /jpeg/structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/structure.txt -------------------------------------------------------------------------------- /jpeg/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/testimg.bmp -------------------------------------------------------------------------------- /jpeg/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/testimg.jpg -------------------------------------------------------------------------------- /jpeg/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/testimg.ppm -------------------------------------------------------------------------------- /jpeg/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/testimgp.jpg -------------------------------------------------------------------------------- /jpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/testorig.jpg -------------------------------------------------------------------------------- /jpeg/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/testprog.jpg -------------------------------------------------------------------------------- /jpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/transupp.c -------------------------------------------------------------------------------- /jpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/transupp.h -------------------------------------------------------------------------------- /jpeg/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/usage.txt -------------------------------------------------------------------------------- /jpeg/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wizard.txt -------------------------------------------------------------------------------- /jpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wrbmp.c -------------------------------------------------------------------------------- /jpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wrgif.c -------------------------------------------------------------------------------- /jpeg/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wrjpgcom.1 -------------------------------------------------------------------------------- /jpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wrjpgcom.c -------------------------------------------------------------------------------- /jpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wrppm.c -------------------------------------------------------------------------------- /jpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wrrle.c -------------------------------------------------------------------------------- /jpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/jpeg/wrtarga.c -------------------------------------------------------------------------------- /libogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/AUTHORS -------------------------------------------------------------------------------- /libogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/CHANGES -------------------------------------------------------------------------------- /libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/COPYING -------------------------------------------------------------------------------- /libogg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/Makefile.am -------------------------------------------------------------------------------- /libogg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/README -------------------------------------------------------------------------------- /libogg/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/autogen.sh -------------------------------------------------------------------------------- /libogg/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/configure.in -------------------------------------------------------------------------------- /libogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /libogg/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/libogg.spec.in -------------------------------------------------------------------------------- /libogg/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/macosx/Info.plist -------------------------------------------------------------------------------- /libogg/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/ogg.m4 -------------------------------------------------------------------------------- /libogg/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/ogg.pc.in -------------------------------------------------------------------------------- /libogg/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/src/Makefile.am -------------------------------------------------------------------------------- /libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/src/bitwise.c -------------------------------------------------------------------------------- /libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/src/framing.c -------------------------------------------------------------------------------- /libogg/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/symbian/bld.inf -------------------------------------------------------------------------------- /libogg/symbian/ogg.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/symbian/ogg.mmp -------------------------------------------------------------------------------- /libogg/win32/VS2010/libogg_static.opensdf: -------------------------------------------------------------------------------- 1 | msakutaMONSTER -------------------------------------------------------------------------------- /libogg/win32/VS6/ogg.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/win32/VS6/ogg.dsw -------------------------------------------------------------------------------- /libogg/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libogg/win32/ogg.def -------------------------------------------------------------------------------- /libvorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/AUTHORS -------------------------------------------------------------------------------- /libvorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/CHANGES -------------------------------------------------------------------------------- /libvorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/COPYING -------------------------------------------------------------------------------- /libvorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/Makefile.am -------------------------------------------------------------------------------- /libvorbis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/README -------------------------------------------------------------------------------- /libvorbis/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/autogen.sh -------------------------------------------------------------------------------- /libvorbis/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/configure.ac -------------------------------------------------------------------------------- /libvorbis/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/debian/control -------------------------------------------------------------------------------- /libvorbis/debian/libvorbis-dev.docs: -------------------------------------------------------------------------------- 1 | debian/tmp/usr/share/doc/libvorbis-*/* 2 | -------------------------------------------------------------------------------- /libvorbis/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/debian/rules -------------------------------------------------------------------------------- /libvorbis/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/debian/watch -------------------------------------------------------------------------------- /libvorbis/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/Makefile.am -------------------------------------------------------------------------------- /libvorbis/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/analysis.c -------------------------------------------------------------------------------- /libvorbis/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/backends.h -------------------------------------------------------------------------------- /libvorbis/lib/barkmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/barkmel.c -------------------------------------------------------------------------------- /libvorbis/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/bitrate.c -------------------------------------------------------------------------------- /libvorbis/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/bitrate.h -------------------------------------------------------------------------------- /libvorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/block.c -------------------------------------------------------------------------------- /libvorbis/lib/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/codebook.c -------------------------------------------------------------------------------- /libvorbis/lib/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/codebook.h -------------------------------------------------------------------------------- /libvorbis/lib/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/envelope.c -------------------------------------------------------------------------------- /libvorbis/lib/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/envelope.h -------------------------------------------------------------------------------- /libvorbis/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/floor0.c -------------------------------------------------------------------------------- /libvorbis/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/floor1.c -------------------------------------------------------------------------------- /libvorbis/lib/highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/highlevel.h -------------------------------------------------------------------------------- /libvorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/info.c -------------------------------------------------------------------------------- /libvorbis/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/lookup.c -------------------------------------------------------------------------------- /libvorbis/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/lookup.h -------------------------------------------------------------------------------- /libvorbis/lib/lookups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/lookups.pl -------------------------------------------------------------------------------- /libvorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/lpc.c -------------------------------------------------------------------------------- /libvorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/lpc.h -------------------------------------------------------------------------------- /libvorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/lsp.c -------------------------------------------------------------------------------- /libvorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/lsp.h -------------------------------------------------------------------------------- /libvorbis/lib/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/mapping0.c -------------------------------------------------------------------------------- /libvorbis/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/masking.h -------------------------------------------------------------------------------- /libvorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/mdct.c -------------------------------------------------------------------------------- /libvorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/mdct.h -------------------------------------------------------------------------------- /libvorbis/lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/misc.c -------------------------------------------------------------------------------- /libvorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/misc.h -------------------------------------------------------------------------------- /libvorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/os.h -------------------------------------------------------------------------------- /libvorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/psy.c -------------------------------------------------------------------------------- /libvorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/psy.h -------------------------------------------------------------------------------- /libvorbis/lib/psytune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/psytune.c -------------------------------------------------------------------------------- /libvorbis/lib/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/registry.c -------------------------------------------------------------------------------- /libvorbis/lib/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/registry.h -------------------------------------------------------------------------------- /libvorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/res0.c -------------------------------------------------------------------------------- /libvorbis/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/scales.h -------------------------------------------------------------------------------- /libvorbis/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/smallft.c -------------------------------------------------------------------------------- /libvorbis/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/smallft.h -------------------------------------------------------------------------------- /libvorbis/lib/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/synthesis.c -------------------------------------------------------------------------------- /libvorbis/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/tone.c -------------------------------------------------------------------------------- /libvorbis/lib/vorbisenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/vorbisenc.c -------------------------------------------------------------------------------- /libvorbis/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/window.c -------------------------------------------------------------------------------- /libvorbis/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/lib/window.h -------------------------------------------------------------------------------- /libvorbis/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/m4/Makefile.am -------------------------------------------------------------------------------- /libvorbis/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/m4/ogg.m4 -------------------------------------------------------------------------------- /libvorbis/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/m4/pkg.m4 -------------------------------------------------------------------------------- /libvorbis/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/symbian/bld.inf -------------------------------------------------------------------------------- /libvorbis/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/test/test.c -------------------------------------------------------------------------------- /libvorbis/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/test/util.c -------------------------------------------------------------------------------- /libvorbis/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/test/util.h -------------------------------------------------------------------------------- /libvorbis/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/todo.txt -------------------------------------------------------------------------------- /libvorbis/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vorbis.m4 -------------------------------------------------------------------------------- /libvorbis/vorbis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vorbis.pc.in -------------------------------------------------------------------------------- /libvorbis/vorbisenc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vorbisenc.pc.in -------------------------------------------------------------------------------- /libvorbis/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/16.vqs -------------------------------------------------------------------------------- /libvorbis/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/16u.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c-1.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c0.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c1.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c2.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c3.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c4.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c5.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c6.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c7.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c8.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44c9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44c9.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p-1.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p0.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p1.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p2.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p3.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p4.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p5.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p6.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p7.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p8.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44p9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44p9.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u0.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u1.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u2.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u3.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u4.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u5.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u6.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u7.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u8.vqs -------------------------------------------------------------------------------- /libvorbis/vq/44u9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/44u9.vqs -------------------------------------------------------------------------------- /libvorbis/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/8.vqs -------------------------------------------------------------------------------- /libvorbis/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/8u.vqs -------------------------------------------------------------------------------- /libvorbis/vq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/Makefile.am -------------------------------------------------------------------------------- /libvorbis/vq/bookutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/bookutil.c -------------------------------------------------------------------------------- /libvorbis/vq/bookutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/bookutil.h -------------------------------------------------------------------------------- /libvorbis/vq/floor_11.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/floor_11.vqs -------------------------------------------------------------------------------- /libvorbis/vq/floor_22.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/floor_22.vqs -------------------------------------------------------------------------------- /libvorbis/vq/floor_44.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/floor_44.vqs -------------------------------------------------------------------------------- /libvorbis/vq/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/metrics.c -------------------------------------------------------------------------------- /libvorbis/vq/vqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/vqgen.c -------------------------------------------------------------------------------- /libvorbis/vq/vqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/libvorbis/vq/vqgen.h -------------------------------------------------------------------------------- /lpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/ANNOUNCE -------------------------------------------------------------------------------- /lpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/CHANGES -------------------------------------------------------------------------------- /lpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/CMakeLists.txt -------------------------------------------------------------------------------- /lpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/INSTALL -------------------------------------------------------------------------------- /lpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/LICENSE -------------------------------------------------------------------------------- /lpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/README -------------------------------------------------------------------------------- /lpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/TODO -------------------------------------------------------------------------------- /lpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/configure -------------------------------------------------------------------------------- /lpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/example.c -------------------------------------------------------------------------------- /lpng/libpng-1.4.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/libpng-1.4.3.txt -------------------------------------------------------------------------------- /lpng/libpng-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/libpng-config.in -------------------------------------------------------------------------------- /lpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/libpng.3 -------------------------------------------------------------------------------- /lpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/libpng.pc.in -------------------------------------------------------------------------------- /lpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/libpngpf.3 -------------------------------------------------------------------------------- /lpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/png.5 -------------------------------------------------------------------------------- /lpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/png.c -------------------------------------------------------------------------------- /lpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/png.h -------------------------------------------------------------------------------- /lpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngbar.jpg -------------------------------------------------------------------------------- /lpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngbar.png -------------------------------------------------------------------------------- /lpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngconf.h -------------------------------------------------------------------------------- /lpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngerror.c -------------------------------------------------------------------------------- /lpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngget.c -------------------------------------------------------------------------------- /lpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngmem.c -------------------------------------------------------------------------------- /lpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngnow.png -------------------------------------------------------------------------------- /lpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngpread.c -------------------------------------------------------------------------------- /lpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngpriv.h -------------------------------------------------------------------------------- /lpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngread.c -------------------------------------------------------------------------------- /lpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngrio.c -------------------------------------------------------------------------------- /lpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngrtran.c -------------------------------------------------------------------------------- /lpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngrutil.c -------------------------------------------------------------------------------- /lpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngset.c -------------------------------------------------------------------------------- /lpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngtest.c -------------------------------------------------------------------------------- /lpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngtest.png -------------------------------------------------------------------------------- /lpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngtrans.c -------------------------------------------------------------------------------- /lpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngwio.c -------------------------------------------------------------------------------- /lpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngwrite.c -------------------------------------------------------------------------------- /lpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngwtran.c -------------------------------------------------------------------------------- /lpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/pngwutil.c -------------------------------------------------------------------------------- /lpng/scripts/pngwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/lpng/scripts/pngwin.rc -------------------------------------------------------------------------------- /models/Assault.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Assault.nut -------------------------------------------------------------------------------- /models/Beamer.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Beamer.nut -------------------------------------------------------------------------------- /models/Defender.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Defender.nut -------------------------------------------------------------------------------- /models/Destroyer.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Destroyer.nut -------------------------------------------------------------------------------- /models/LTurret.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/LTurret.nut -------------------------------------------------------------------------------- /models/MTurret.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/MTurret.nut -------------------------------------------------------------------------------- /models/RStation.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/RStation.nut -------------------------------------------------------------------------------- /models/Sceptor.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Sceptor.nut -------------------------------------------------------------------------------- /models/Shipyard.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Shipyard.nut -------------------------------------------------------------------------------- /models/Warpable.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Warpable.nut -------------------------------------------------------------------------------- /models/Worker.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Worker.mqo -------------------------------------------------------------------------------- /models/Worker.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/Worker.nut -------------------------------------------------------------------------------- /models/assault.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/assault.mqo -------------------------------------------------------------------------------- /models/bbrail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/bbrail.bmp -------------------------------------------------------------------------------- /models/beamer.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/beamer.mqo -------------------------------------------------------------------------------- /models/bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/bricks.bmp -------------------------------------------------------------------------------- /models/bridge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/bridge.bmp -------------------------------------------------------------------------------- /models/bridgetower.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/bridgetower.mqo -------------------------------------------------------------------------------- /models/debris.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/debris.mqo -------------------------------------------------------------------------------- /models/defender.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/defender.mqo -------------------------------------------------------------------------------- /models/destroyer.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/destroyer.mqo -------------------------------------------------------------------------------- /models/doors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/doors.jpg -------------------------------------------------------------------------------- /models/engine.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/engine.bmp -------------------------------------------------------------------------------- /models/engine2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/engine2.bmp -------------------------------------------------------------------------------- /models/engine2br.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/engine2br.bmp -------------------------------------------------------------------------------- /models/gradients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/gradients.png -------------------------------------------------------------------------------- /models/gradients.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/gradients.svg -------------------------------------------------------------------------------- /models/interceptor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/interceptor.bmp -------------------------------------------------------------------------------- /models/interceptor.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/interceptor.mqo -------------------------------------------------------------------------------- /models/lturret.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/lturret.mqo -------------------------------------------------------------------------------- /models/lturret1.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/lturret1.mqo -------------------------------------------------------------------------------- /models/missile.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/missile.mqo -------------------------------------------------------------------------------- /models/missilepod.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/missilepod.bmp -------------------------------------------------------------------------------- /models/rstation.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/rstation.mqo -------------------------------------------------------------------------------- /models/scarry.hb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/scarry.hb -------------------------------------------------------------------------------- /models/shipyard.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/shipyard.mqo -------------------------------------------------------------------------------- /models/solarpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/solarpanel.png -------------------------------------------------------------------------------- /models/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/steel.png -------------------------------------------------------------------------------- /models/steelface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/steelface.jpg -------------------------------------------------------------------------------- /models/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/stripes.png -------------------------------------------------------------------------------- /models/turretg1.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/turretg1.mqo -------------------------------------------------------------------------------- /models/turretz1.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/turretz1.mqo -------------------------------------------------------------------------------- /models/wirebit.mqo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/models/wirebit.mqo -------------------------------------------------------------------------------- /mods/surface/A10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/A10.cpp -------------------------------------------------------------------------------- /mods/surface/A10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/A10.h -------------------------------------------------------------------------------- /mods/surface/Aerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/Aerial.h -------------------------------------------------------------------------------- /mods/surface/Airport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/Airport.h -------------------------------------------------------------------------------- /mods/surface/Apache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/Apache.h -------------------------------------------------------------------------------- /mods/surface/F15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/F15.cpp -------------------------------------------------------------------------------- /mods/surface/F15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/F15.h -------------------------------------------------------------------------------- /mods/surface/TIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/TIN.cpp -------------------------------------------------------------------------------- /mods/surface/TIN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/TIN.h -------------------------------------------------------------------------------- /mods/surface/Tank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/Tank.cpp -------------------------------------------------------------------------------- /mods/surface/Tank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/Tank.h -------------------------------------------------------------------------------- /mods/surface/WarMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/WarMap.h -------------------------------------------------------------------------------- /mods/surface/__init.nut: -------------------------------------------------------------------------------- 1 | 2 | dofile("mods/surface/common.nut"); 3 | 4 | -------------------------------------------------------------------------------- /mods/surface/drawmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/drawmap.h -------------------------------------------------------------------------------- /mods/surface/mas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/mods/surface/mas.cpp -------------------------------------------------------------------------------- /mods/vastspace/__init.nut: -------------------------------------------------------------------------------- 1 | 2 | dofile("mods/vastspace/common.nut"); 3 | 4 | -------------------------------------------------------------------------------- /motioner/antiglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/antiglut.h -------------------------------------------------------------------------------- /motioner/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/export.h -------------------------------------------------------------------------------- /motioner/motion.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/motion.mot -------------------------------------------------------------------------------- /motioner/motioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/motioner.cpp -------------------------------------------------------------------------------- /motioner/motioner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/motioner.sln -------------------------------------------------------------------------------- /motioner/wtltest/wtltest.h: -------------------------------------------------------------------------------- 1 | // wtltest.h 2 | -------------------------------------------------------------------------------- /motioner/ysdnmmot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/ysdnmmot.cpp -------------------------------------------------------------------------------- /motioner/ysdnmmot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/ysdnmmot.h -------------------------------------------------------------------------------- /motioner/yssurf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/yssurf.cpp -------------------------------------------------------------------------------- /motioner/yssurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/yssurf.h -------------------------------------------------------------------------------- /motioner/yssurfdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/motioner/yssurfdraw.c -------------------------------------------------------------------------------- /scripts/Builder.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/Builder.nut -------------------------------------------------------------------------------- /scripts/alphacen.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/alphacen.nut -------------------------------------------------------------------------------- /scripts/common.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/common.nut -------------------------------------------------------------------------------- /scripts/demo1.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/demo1.nut -------------------------------------------------------------------------------- /scripts/demo2.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/demo2.nut -------------------------------------------------------------------------------- /scripts/demo3.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/demo3.nut -------------------------------------------------------------------------------- /scripts/demo4.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/demo4.nut -------------------------------------------------------------------------------- /scripts/demo5.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/demo5.nut -------------------------------------------------------------------------------- /scripts/init.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/init.nut -------------------------------------------------------------------------------- /scripts/initClient.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/initClient.nut -------------------------------------------------------------------------------- /scripts/items.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/items.nut -------------------------------------------------------------------------------- /scripts/materials.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/materials.nut -------------------------------------------------------------------------------- /scripts/roll.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/roll.nut -------------------------------------------------------------------------------- /scripts/tutorial1.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/tutorial1.nut -------------------------------------------------------------------------------- /scripts/tutorial2.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/tutorial2.nut -------------------------------------------------------------------------------- /scripts/tutorial3.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/scripts/tutorial3.nut -------------------------------------------------------------------------------- /setup/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/setup/README.txt -------------------------------------------------------------------------------- /setup/vssetup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/setup/vssetup.sln -------------------------------------------------------------------------------- /setup/vssetup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/setup/vssetup.vdproj -------------------------------------------------------------------------------- /shaders/additive.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/additive.fs -------------------------------------------------------------------------------- /shaders/additive.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/additive.vs -------------------------------------------------------------------------------- /shaders/atmosphere.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/atmosphere.fs -------------------------------------------------------------------------------- /shaders/atmosphere.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/atmosphere.vs -------------------------------------------------------------------------------- /shaders/bump.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/bump.fs -------------------------------------------------------------------------------- /shaders/bump.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/bump.vs -------------------------------------------------------------------------------- /shaders/corona.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/corona.fs -------------------------------------------------------------------------------- /shaders/corona.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/corona.vs -------------------------------------------------------------------------------- /shaders/earth.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/earth.fs -------------------------------------------------------------------------------- /shaders/earth.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/earth.vs -------------------------------------------------------------------------------- /shaders/earth_cloud.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/earth_cloud.fs -------------------------------------------------------------------------------- /shaders/earth_cloud.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/earth_cloud.vs -------------------------------------------------------------------------------- /shaders/flatplanet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/flatplanet.fs -------------------------------------------------------------------------------- /shaders/flatplanet.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/flatplanet.vs -------------------------------------------------------------------------------- /shaders/mirror.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/mirror.fs -------------------------------------------------------------------------------- /shaders/mirror.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/mirror.vs -------------------------------------------------------------------------------- /shaders/moon.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/moon.fs -------------------------------------------------------------------------------- /shaders/moon.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/moon.vs -------------------------------------------------------------------------------- /shaders/ringshadow.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/ringshadow.fs -------------------------------------------------------------------------------- /shaders/ringshadow.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/ringshadow.vs -------------------------------------------------------------------------------- /shaders/shadowmap.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/shadowmap.fs -------------------------------------------------------------------------------- /shaders/shadowmap.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/shadowmap.vs -------------------------------------------------------------------------------- /shaders/tonemap.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/shaders/tonemap.fs -------------------------------------------------------------------------------- /sound/aagun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sound/aagun.wav -------------------------------------------------------------------------------- /sound/airrip-h.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sound/airrip-h.ogg -------------------------------------------------------------------------------- /sound/airrip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sound/airrip.ogg -------------------------------------------------------------------------------- /sqscripter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/README.md -------------------------------------------------------------------------------- /sqscripter/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/clear.png -------------------------------------------------------------------------------- /sqscripter/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/new.png -------------------------------------------------------------------------------- /sqscripter/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/open.png -------------------------------------------------------------------------------- /sqscripter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/resource.h -------------------------------------------------------------------------------- /sqscripter/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/run.png -------------------------------------------------------------------------------- /sqscripter/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/save.png -------------------------------------------------------------------------------- /sqscripter/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/saveas.png -------------------------------------------------------------------------------- /sqscripter/wx/build/osx/wxdebug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_OPTIMIZATION_LEVEL = 0 2 | ONLY_ACTIVE_ARCH = YES 3 | -------------------------------------------------------------------------------- /sqscripter/wx/build/osx/wxrelease.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_OPTIMIZATION_LEVEL = 2 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0001.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0002.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0003.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0011.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0012.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0015.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0016.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0017.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0018.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0019.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0020.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0021.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0022.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0024.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/docs/tech/tn0025.txt: -------------------------------------------------------------------------------- 1 | Please see index.txt 2 | -------------------------------------------------------------------------------- /sqscripter/wx/include/wx/osx/colour.h: -------------------------------------------------------------------------------- 1 | #include "wx/osx/core/colour.h" 2 | -------------------------------------------------------------------------------- /sqscripter/wx/include/wx/osx/mimetype.h: -------------------------------------------------------------------------------- 1 | #include "wx/osx/core/mimetype.h" 2 | -------------------------------------------------------------------------------- /sqscripter/wx/include/wx/osx/uma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sqscripter/wx/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/wx/regen -------------------------------------------------------------------------------- /sqscripter/wx/samples/calendar/calendar.rc: -------------------------------------------------------------------------------- 1 | #include "wx/msw/wx.rc" 2 | 3 | -------------------------------------------------------------------------------- /sqscripter/wx/src/osx/carbon/apprsrc.r: -------------------------------------------------------------------------------- 1 | /* not needed anymore */ 2 | -------------------------------------------------------------------------------- /sqscripter/wx/src/tiff/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20120922 2 | -------------------------------------------------------------------------------- /sqscripter/wx/src/tiff/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.3 2 | -------------------------------------------------------------------------------- /sqscripter/wx/src/tiff/libtiff/libtiff.map: -------------------------------------------------------------------------------- 1 | LIBTIFF_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /sqscripter/wx/src/tiff/libtiff/libtiffxx.map: -------------------------------------------------------------------------------- 1 | LIBTIFFXX_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /sqscripter/wx/utils/helpview/src/client.rc: -------------------------------------------------------------------------------- 1 | #include "wx/msw/wx.rc" 2 | -------------------------------------------------------------------------------- /sqscripter/wx/utils/hhp2cached/hhp2cached.rc: -------------------------------------------------------------------------------- 1 | #include "wx/msw/wx.rc" 2 | -------------------------------------------------------------------------------- /sqscripter/wx/utils/screenshotgen/src/screenshotgen.rc: -------------------------------------------------------------------------------- 1 | #include "wx/msw/wx.rc" 2 | -------------------------------------------------------------------------------- /sqscripter/wx/wxwin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/sqscripter/wx/wxwin.m4 -------------------------------------------------------------------------------- /squirrel3/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | lib 3 | -------------------------------------------------------------------------------- /squirrel3/COMPILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/COMPILE -------------------------------------------------------------------------------- /squirrel3/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/COPYRIGHT -------------------------------------------------------------------------------- /squirrel3/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/HISTORY -------------------------------------------------------------------------------- /squirrel3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/Makefile -------------------------------------------------------------------------------- /squirrel3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/README -------------------------------------------------------------------------------- /squirrel3/etc/test.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/etc/test.nut -------------------------------------------------------------------------------- /squirrel3/samples/hello.nut: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /squirrel3/sq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/sq/Makefile -------------------------------------------------------------------------------- /squirrel3/sq/sq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/sq/sq.c -------------------------------------------------------------------------------- /squirrel3/sq/sq.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/sq/sq.dsp -------------------------------------------------------------------------------- /squirrel3/sq/sq.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/sq/sq.vcproj -------------------------------------------------------------------------------- /squirrel3/squirrel.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/squirrel.dsw -------------------------------------------------------------------------------- /squirrel3/squirrel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/squirrel3/squirrel.sln -------------------------------------------------------------------------------- /src/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Application.cpp -------------------------------------------------------------------------------- /src/Assault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Assault.cpp -------------------------------------------------------------------------------- /src/Assault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Assault.h -------------------------------------------------------------------------------- /src/Autonomous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Autonomous.cpp -------------------------------------------------------------------------------- /src/BeamProjectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/BeamProjectile.cpp -------------------------------------------------------------------------------- /src/Beamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Beamer.cpp -------------------------------------------------------------------------------- /src/Beamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Beamer.h -------------------------------------------------------------------------------- /src/BinDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/BinDiff.cpp -------------------------------------------------------------------------------- /src/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Builder.cpp -------------------------------------------------------------------------------- /src/Bullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Bullet.cpp -------------------------------------------------------------------------------- /src/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Client.cpp -------------------------------------------------------------------------------- /src/CoordSys-sq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/CoordSys-sq.h -------------------------------------------------------------------------------- /src/CoordSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/CoordSys.cpp -------------------------------------------------------------------------------- /src/Defender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Defender.cpp -------------------------------------------------------------------------------- /src/Defender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Defender.h -------------------------------------------------------------------------------- /src/Destroyer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Destroyer.cpp -------------------------------------------------------------------------------- /src/Destroyer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Destroyer.h -------------------------------------------------------------------------------- /src/Docker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Docker.cpp -------------------------------------------------------------------------------- /src/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Entity.cpp -------------------------------------------------------------------------------- /src/Frigate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Frigate.cpp -------------------------------------------------------------------------------- /src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Game.cpp -------------------------------------------------------------------------------- /src/LTurret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/LTurret.cpp -------------------------------------------------------------------------------- /src/LagrangePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/LagrangePoint.cpp -------------------------------------------------------------------------------- /src/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Mesh.cpp -------------------------------------------------------------------------------- /src/Missile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Missile.cpp -------------------------------------------------------------------------------- /src/Observable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Observable.cpp -------------------------------------------------------------------------------- /src/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Player.cpp -------------------------------------------------------------------------------- /src/RStation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/RStation.cpp -------------------------------------------------------------------------------- /src/RStation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/RStation.h -------------------------------------------------------------------------------- /src/Respawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Respawn.cpp -------------------------------------------------------------------------------- /src/Respawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Respawn.h -------------------------------------------------------------------------------- /src/RoundAstrobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/RoundAstrobj.cpp -------------------------------------------------------------------------------- /src/Scarry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Scarry.cpp -------------------------------------------------------------------------------- /src/Scarry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Scarry.h -------------------------------------------------------------------------------- /src/Sceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Sceptor.cpp -------------------------------------------------------------------------------- /src/Sceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Sceptor.h -------------------------------------------------------------------------------- /src/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Server.cpp -------------------------------------------------------------------------------- /src/ShadowMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/ShadowMap.cpp -------------------------------------------------------------------------------- /src/Shipyard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Shipyard.cpp -------------------------------------------------------------------------------- /src/SqInitProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/SqInitProcess.cpp -------------------------------------------------------------------------------- /src/Universe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Universe.cpp -------------------------------------------------------------------------------- /src/VastSpace.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/VastSpace.rc -------------------------------------------------------------------------------- /src/Warpable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Warpable.cpp -------------------------------------------------------------------------------- /src/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Worker.cpp -------------------------------------------------------------------------------- /src/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/Worker.h -------------------------------------------------------------------------------- /src/argtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/argtok.h -------------------------------------------------------------------------------- /src/arms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/arms.cpp -------------------------------------------------------------------------------- /src/astro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/astro.cpp -------------------------------------------------------------------------------- /src/astrodraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/astrodraw.cpp -------------------------------------------------------------------------------- /src/avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/avi.c -------------------------------------------------------------------------------- /src/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/avi.h -------------------------------------------------------------------------------- /src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/bitmap.c -------------------------------------------------------------------------------- /src/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/cmd.cpp -------------------------------------------------------------------------------- /src/cmd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/cmd_int.h -------------------------------------------------------------------------------- /src/cmddraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/cmddraw.cpp -------------------------------------------------------------------------------- /src/dedsvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/dedsvr.cpp -------------------------------------------------------------------------------- /src/draw/Mesh-draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/draw/Mesh-draw.cpp -------------------------------------------------------------------------------- /src/draw/VBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/draw/VBO.cpp -------------------------------------------------------------------------------- /src/draw/blackbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/draw/blackbody.cpp -------------------------------------------------------------------------------- /src/draw/effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/draw/effects.cpp -------------------------------------------------------------------------------- /src/draw/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/draw/material.cpp -------------------------------------------------------------------------------- /src/draw/ring-draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/draw/ring-draw.cpp -------------------------------------------------------------------------------- /src/draw/war-draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/draw/war-draw.cpp -------------------------------------------------------------------------------- /src/dstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/dstring.cpp -------------------------------------------------------------------------------- /src/galaxy_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/galaxy_field.h -------------------------------------------------------------------------------- /src/glsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glsl.c -------------------------------------------------------------------------------- /src/gltestplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/gltestplus.cpp -------------------------------------------------------------------------------- /src/glw/GLWbuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWbuild.cpp -------------------------------------------------------------------------------- /src/glw/GLWbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWbutton.cpp -------------------------------------------------------------------------------- /src/glw/GLWchart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWchart.cpp -------------------------------------------------------------------------------- /src/glw/GLWchat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWchat.cpp -------------------------------------------------------------------------------- /src/glw/GLWentlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWentlist.cpp -------------------------------------------------------------------------------- /src/glw/GLWentlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWentlist.h -------------------------------------------------------------------------------- /src/glw/GLWmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWmenu.cpp -------------------------------------------------------------------------------- /src/glw/GLWmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWmenu.h -------------------------------------------------------------------------------- /src/glw/GLWtaskBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWtaskBar.cpp -------------------------------------------------------------------------------- /src/glw/GLWtip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/GLWtip.h -------------------------------------------------------------------------------- /src/glw/glwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/glwindow.cpp -------------------------------------------------------------------------------- /src/glw/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/message.cpp -------------------------------------------------------------------------------- /src/glw/solarmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/glw/solarmap.cpp -------------------------------------------------------------------------------- /src/judge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/judge.cpp -------------------------------------------------------------------------------- /src/keybind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/keybind.cpp -------------------------------------------------------------------------------- /src/keybind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/keybind.h -------------------------------------------------------------------------------- /src/motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/motion.cpp -------------------------------------------------------------------------------- /src/mqo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/mqo.cpp -------------------------------------------------------------------------------- /src/mqoadapt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/mqoadapt.cpp -------------------------------------------------------------------------------- /src/mqodraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/mqodraw.cpp -------------------------------------------------------------------------------- /src/noises/noise_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/noises/noise_int.h -------------------------------------------------------------------------------- /src/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/png.cpp -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/serial.cpp -------------------------------------------------------------------------------- /src/serial_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/serial_util.cpp -------------------------------------------------------------------------------- /src/shield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/shield.cpp -------------------------------------------------------------------------------- /src/sqadapt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/sqadapt.cpp -------------------------------------------------------------------------------- /src/sqserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/sqserial.h -------------------------------------------------------------------------------- /src/stellar_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/stellar_file.cpp -------------------------------------------------------------------------------- /src/tefpol3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/tefpol3d.cpp -------------------------------------------------------------------------------- /src/teline3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/teline3d.cpp -------------------------------------------------------------------------------- /src/tent3d_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/tent3d_p.h -------------------------------------------------------------------------------- /src/war.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/war.cpp -------------------------------------------------------------------------------- /src/ysdnmmot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/src/ysdnmmot.cpp -------------------------------------------------------------------------------- /ssd_keywords.txt: -------------------------------------------------------------------------------- 1 | astro 2 | new 3 | coordsys 4 | define 5 | include -------------------------------------------------------------------------------- /svn-bullet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/svn-bullet.sh -------------------------------------------------------------------------------- /textures/Bullet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/Bullet.bmp -------------------------------------------------------------------------------- /textures/Ceres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/Ceres.png -------------------------------------------------------------------------------- /textures/Star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/Star.jpg -------------------------------------------------------------------------------- /textures/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/attack.png -------------------------------------------------------------------------------- /textures/attack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/attack.svg -------------------------------------------------------------------------------- /textures/attack2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/attack2.png -------------------------------------------------------------------------------- /textures/attack2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/attack2.svg -------------------------------------------------------------------------------- /textures/blast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/blast.jpg -------------------------------------------------------------------------------- /textures/blast.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/blast.pdn -------------------------------------------------------------------------------- /textures/bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/bricks.bmp -------------------------------------------------------------------------------- /textures/building3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/building3.jpg -------------------------------------------------------------------------------- /textures/buildman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/buildman.png -------------------------------------------------------------------------------- /textures/buildman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/buildman.svg -------------------------------------------------------------------------------- /textures/cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/cameras.png -------------------------------------------------------------------------------- /textures/cameras.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/cameras.svg -------------------------------------------------------------------------------- /textures/cammode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/cammode.png -------------------------------------------------------------------------------- /textures/cammode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/cammode.svg -------------------------------------------------------------------------------- /textures/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/chart.png -------------------------------------------------------------------------------- /textures/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/chart.svg -------------------------------------------------------------------------------- /textures/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/chat.png -------------------------------------------------------------------------------- /textures/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/chat.svg -------------------------------------------------------------------------------- /textures/cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/cloud.jpg -------------------------------------------------------------------------------- /textures/commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/commands.png -------------------------------------------------------------------------------- /textures/commands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/commands.svg -------------------------------------------------------------------------------- /textures/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/control.png -------------------------------------------------------------------------------- /textures/control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/control.svg -------------------------------------------------------------------------------- /textures/control2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/control2.png -------------------------------------------------------------------------------- /textures/control2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/control2.svg -------------------------------------------------------------------------------- /textures/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/dock.png -------------------------------------------------------------------------------- /textures/dock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/dock.svg -------------------------------------------------------------------------------- /textures/dockman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/dockman.png -------------------------------------------------------------------------------- /textures/dockman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/dockman.svg -------------------------------------------------------------------------------- /textures/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/earth.jpg -------------------------------------------------------------------------------- /textures/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/eject.png -------------------------------------------------------------------------------- /textures/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/eject.svg -------------------------------------------------------------------------------- /textures/enceladus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/enceladus.jpg -------------------------------------------------------------------------------- /textures/entlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/entlist.png -------------------------------------------------------------------------------- /textures/entlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/entlist.svg -------------------------------------------------------------------------------- /textures/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/exit.png -------------------------------------------------------------------------------- /textures/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/exit.svg -------------------------------------------------------------------------------- /textures/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/focus.png -------------------------------------------------------------------------------- /textures/focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/focus.svg -------------------------------------------------------------------------------- /textures/gasgiant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/gasgiant.jpg -------------------------------------------------------------------------------- /textures/grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/grass.jpg -------------------------------------------------------------------------------- /textures/halt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/halt.png -------------------------------------------------------------------------------- /textures/halt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/halt.svg -------------------------------------------------------------------------------- /textures/hydrogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/hydrogen.png -------------------------------------------------------------------------------- /textures/hydrogen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/hydrogen.svg -------------------------------------------------------------------------------- /textures/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/moon.png -------------------------------------------------------------------------------- /textures/moonbump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/moonbump.png -------------------------------------------------------------------------------- /textures/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/move.png -------------------------------------------------------------------------------- /textures/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/move.svg -------------------------------------------------------------------------------- /textures/move2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/move2.png -------------------------------------------------------------------------------- /textures/move2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/move2.svg -------------------------------------------------------------------------------- /textures/movepath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/movepath.png -------------------------------------------------------------------------------- /textures/movepath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/movepath.svg -------------------------------------------------------------------------------- /textures/muzzle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/muzzle.bmp -------------------------------------------------------------------------------- /textures/navlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/navlight.png -------------------------------------------------------------------------------- /textures/navlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/navlight.svg -------------------------------------------------------------------------------- /textures/noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/noise.jpg -------------------------------------------------------------------------------- /textures/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/overlay.png -------------------------------------------------------------------------------- /textures/overlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/overlay.svg -------------------------------------------------------------------------------- /textures/oxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/oxygen.png -------------------------------------------------------------------------------- /textures/oxygen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/oxygen.svg -------------------------------------------------------------------------------- /textures/pause.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/pause.jpg -------------------------------------------------------------------------------- /textures/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/pause.png -------------------------------------------------------------------------------- /textures/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/pause.svg -------------------------------------------------------------------------------- /textures/perlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/perlin.jpg -------------------------------------------------------------------------------- /textures/pointer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/pointer.bmp -------------------------------------------------------------------------------- /textures/resetrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/resetrot.png -------------------------------------------------------------------------------- /textures/resetrot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/resetrot.svg -------------------------------------------------------------------------------- /textures/ricochet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/ricochet.bmp -------------------------------------------------------------------------------- /textures/showorbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/showorbit.png -------------------------------------------------------------------------------- /textures/showorbit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/showorbit.svg -------------------------------------------------------------------------------- /textures/smoke.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/smoke.bmp -------------------------------------------------------------------------------- /textures/smoke.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/smoke.xcf -------------------------------------------------------------------------------- /textures/smoke2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/smoke2.jpg -------------------------------------------------------------------------------- /textures/smoke2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/smoke2.png -------------------------------------------------------------------------------- /textures/smokefire.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/smokefire.bmp -------------------------------------------------------------------------------- /textures/solarmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/solarmap.png -------------------------------------------------------------------------------- /textures/solarmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/solarmap.svg -------------------------------------------------------------------------------- /textures/spark.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/spark.bmp -------------------------------------------------------------------------------- /textures/spark.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/spark.pdn -------------------------------------------------------------------------------- /textures/tutor_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/tutor_end.png -------------------------------------------------------------------------------- /textures/tutor_end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/tutor_end.svg -------------------------------------------------------------------------------- /textures/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/undock.png -------------------------------------------------------------------------------- /textures/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/undock.svg -------------------------------------------------------------------------------- /textures/unpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/unpause.png -------------------------------------------------------------------------------- /textures/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/water.png -------------------------------------------------------------------------------- /textures/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/textures/water.svg -------------------------------------------------------------------------------- /vs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/vs.svg -------------------------------------------------------------------------------- /zlib/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libz.a 3 | example 4 | minigzip 5 | -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/Makefile -------------------------------------------------------------------------------- /zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/Makefile.in -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/algorithm.txt -------------------------------------------------------------------------------- /zlib/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/as400/bndsrc -------------------------------------------------------------------------------- /zlib/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/as400/compile.clp -------------------------------------------------------------------------------- /zlib/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/as400/readme.txt -------------------------------------------------------------------------------- /zlib/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/as400/zlib.inc -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/configure -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/example.c -------------------------------------------------------------------------------- /zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/examples/gun.c -------------------------------------------------------------------------------- /zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/examples/zran.c -------------------------------------------------------------------------------- /zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/gzio.c -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/make_vms.com -------------------------------------------------------------------------------- /zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/minigzip.c -------------------------------------------------------------------------------- /zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/old/README -------------------------------------------------------------------------------- /zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/old/descrip.mms -------------------------------------------------------------------------------- /zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /zlib/old/zlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/old/zlib.html -------------------------------------------------------------------------------- /zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/win32/zlib.def -------------------------------------------------------------------------------- /zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/zconf.in.h -------------------------------------------------------------------------------- /zlib/zlib-1.2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/zlib-1.2.3.tar.gz -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msakuta/VastSpace/HEAD/zlib/zutil.h --------------------------------------------------------------------------------