├── .gitattributes ├── .gitignore ├── 3rdparty └── d3d8 │ ├── d3d8.h │ ├── d3d8caps.h │ └── d3d8types.h ├── CMakeLists.txt ├── CMakeSettings.json ├── MinGW-toolchain.cmake ├── Other Licenses.txt ├── PopCap Framework License.txt ├── README.md └── source ├── CircleShoot ├── AdventureScreen.cpp ├── AdventureScreen.h ├── Ball.cpp ├── Ball.h ├── BlendedImage.cpp ├── BlendedImage.h ├── Board.cpp ├── Board.h ├── Bullet.cpp ├── Bullet.h ├── CMakeLists.txt ├── CircleButton.cpp ├── CircleButton.h ├── CircleCheckbox.cpp ├── CircleCheckbox.h ├── CircleCommon.cpp ├── CircleCommon.h ├── CircleDialog.cpp ├── CircleDialog.h ├── CircleShoot.vcproj ├── CircleShootApp.cpp ├── CircleShootApp.h ├── CreateUserDialog.cpp ├── CreateUserDialog.h ├── CreditsScreen.cpp ├── CreditsScreen.h ├── CurveData.cpp ├── CurveData.h ├── CurveMgr.cpp ├── CurveMgr.h ├── DataSync.cpp ├── DataSync.h ├── Gun.cpp ├── Gun.h ├── HelpScreen.cpp ├── HelpScreen.h ├── HighScoreMgr.cpp ├── HighScoreMgr.h ├── LevelParser.cpp ├── LevelParser.h ├── LoadingScreen.cpp ├── LoadingScreen.h ├── Main.cpp ├── MainMenu.cpp ├── MainMenu.h ├── MoreGamesScreen.cpp ├── MoreGamesScreen.h ├── OptionsDialog.cpp ├── OptionsDialog.h ├── ParticleMgr.cpp ├── ParticleMgr.h ├── PracticeScreen.cpp ├── PracticeScreen.h ├── ProfileMgr.cpp ├── ProfileMgr.h ├── Res.cpp ├── Res.h ├── SoundMgr.cpp ├── SoundMgr.h ├── SpriteMgr.cpp ├── SpriteMgr.h ├── StatsDialog.cpp ├── StatsDialog.h ├── TransitionMgr.cpp ├── TransitionMgr.h ├── UserDialog.cpp ├── UserDialog.h ├── WayPoint.cpp ├── WayPoint.h ├── WidgetMover.cpp ├── WidgetMover.h ├── WorkerThread.cpp ├── WorkerThread.h ├── Zuma.ico ├── Zuma.rc └── Zuma_Prefix.pch ├── ImageLib ├── CMakeLists.txt ├── ImageLib VS2005.vcproj ├── ImageLib.cpp ├── ImageLib.dsp ├── ImageLib.h ├── ImageLib.vcproj ├── j2k-codec │ ├── J2K_Codec.bas │ ├── J2K_Codec.cs │ ├── J2K_Codec.vb │ ├── J2K_Control.idl │ ├── License.txt │ ├── ReadMe.txt │ ├── bmp.h │ ├── file_id.diz │ ├── j2k-codec.dll │ ├── j2k-codec.exp │ ├── j2k-codec.h │ ├── j2k-codec.lib │ ├── j2k-codec.url │ ├── j2k-control.dll │ ├── j2k.ico │ ├── j2k_codec.pas │ └── purchase.url ├── jpeg │ ├── ansi2knr.1 │ ├── ansi2knr.c │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── ckconfig.c │ ├── coderules.doc │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── djpeg.1 │ ├── djpeg.c │ ├── example.c │ ├── install-sh │ ├── 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.bcc │ ├── jconfig.cfg │ ├── jconfig.dj │ ├── jconfig.h │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.vc │ ├── jconfig.vms │ ├── jconfig.wat │ ├── 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 │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── ltconfig │ ├── ltmain.sh │ ├── makcjpeg.st │ ├── makdjpeg.st │ ├── makeapps.ds │ ├── makefile.ansi │ ├── makefile.bcc │ ├── makefile.cfg │ ├── makefile.dj │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makefile.vms │ ├── makefile.wat │ ├── makelib.ds │ ├── makeproj.mac │ ├── makljpeg.st │ ├── maktjpeg.st │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── readme │ ├── transupp.c │ ├── transupp.h │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── jpeg2000 │ ├── COPYRIGHT │ ├── INSTALL │ ├── LICENSE │ ├── NEWS │ ├── README │ ├── jas_cm.c │ ├── jas_cm.h │ ├── jas_config.h │ ├── jas_config2.h │ ├── jas_debug.c │ ├── jas_debug.h │ ├── jas_fix.h │ ├── jas_getopt.c │ ├── jas_getopt.h │ ├── jas_icc.c │ ├── jas_icc.h │ ├── jas_iccdata.c │ ├── jas_image.c │ ├── jas_image.h │ ├── jas_init.c │ ├── jas_init.h │ ├── jas_malloc.c │ ├── jas_malloc.h │ ├── jas_math.h │ ├── jas_seq.c │ ├── jas_seq.h │ ├── jas_stream.c │ ├── jas_stream.h │ ├── jas_string.c │ ├── jas_string.h │ ├── jas_tvp.c │ ├── jas_tvp.h │ ├── jas_types.h │ ├── jas_version.c │ ├── jas_version.h │ ├── jasper.h │ ├── jp2_cod.c │ ├── jp2_cod.h │ ├── jp2_dec.c │ ├── jp2_dec.h │ ├── jp2_enc.c │ ├── jpc_bs.c │ ├── jpc_bs.h │ ├── jpc_cod.h │ ├── jpc_cs.c │ ├── jpc_cs.h │ ├── jpc_dec.c │ ├── jpc_dec.h │ ├── jpc_enc.c │ ├── jpc_enc.h │ ├── jpc_fix.h │ ├── jpc_flt.h │ ├── jpc_math.c │ ├── jpc_math.h │ ├── jpc_mct.c │ ├── jpc_mct.h │ ├── jpc_mqcod.c │ ├── jpc_mqcod.h │ ├── jpc_mqdec.c │ ├── jpc_mqdec.h │ ├── jpc_mqenc.c │ ├── jpc_mqenc.h │ ├── jpc_qmfb.c │ ├── jpc_qmfb.h │ ├── jpc_t1cod.c │ ├── jpc_t1cod.h │ ├── jpc_t1dec.c │ ├── jpc_t1dec.h │ ├── jpc_t1enc.c │ ├── jpc_t1enc.h │ ├── jpc_t2cod.c │ ├── jpc_t2cod.h │ ├── jpc_t2dec.c │ ├── jpc_t2dec.h │ ├── jpc_t2enc.c │ ├── jpc_t2enc.h │ ├── jpc_tagtree.c │ ├── jpc_tagtree.h │ ├── jpc_tsfb.c │ ├── jpc_tsfb.h │ ├── jpc_util.c │ └── jpc_util.h ├── png │ ├── announce │ ├── changes │ ├── example.c │ ├── install │ ├── knownbug │ ├── libpng.3 │ ├── libpng.txt │ ├── libpngpf.3 │ ├── license │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngasmrd.h │ ├── pngconf.h │ ├── pngerror.c │ ├── pngget.c │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpread.c │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngvcrd.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── readme │ ├── todo │ └── y2kinfo └── zlib │ ├── ChangeLog │ ├── Make_vms.com │ ├── Makefile.in │ ├── Makefile.riscos │ ├── adler32.c │ ├── algorithm.txt │ ├── compress.c │ ├── configure │ ├── crc32.c │ ├── deflate.c │ ├── deflate.h │ ├── descrip.mms │ ├── example.c │ ├── faq │ ├── gzio.c │ ├── index │ ├── infblock.c │ ├── infblock.h │ ├── infcodes.c │ ├── infcodes.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ ├── infutil.h │ ├── maketree.c │ ├── minigzip.c │ ├── readme │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.3 │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── PakLib ├── CMakeLists.txt ├── PakInterface.cpp ├── PakInterface.h ├── PakLib.vcproj └── ReadMe.txt └── SexyAppFramework ├── AutoCrit.h ├── BassLoader.cpp ├── BassLoader.h ├── BassMusicInterface.cpp ├── BassMusicInterface.h ├── BltRotatedHelper.inc ├── Buffer.cpp ├── Buffer.h ├── ButtonListener.h ├── ButtonWidget.cpp ├── ButtonWidget.h ├── CMakeLists.txt ├── Checkbox.cpp ├── Checkbox.h ├── CheckboxListener.h ├── Color.cpp ├── Color.h ├── Common.cpp ├── Common.h ├── CritSect.cpp ├── CritSect.h ├── CursorWidget.cpp ├── CursorWidget.h ├── D3D8Helper.cpp ├── D3D8Helper.h ├── D3DInterface.cpp ├── D3DInterface.h ├── D3DTester.cpp ├── D3DTester.h ├── DDI_Additive.inc ├── DDI_AlphaBlt.inc ├── DDI_BltRotated.inc ├── DDI_BltRotated_Additive.inc ├── DDI_FastBlt_NoAlpha.inc ├── DDI_FastStretch.inc ├── DDI_FastStretch_Additive.inc ├── DDI_NormalBlt_Volatile.inc ├── DDImage.cpp ├── DDImage.h ├── DDInterface.cpp ├── DDInterface.h ├── DSoundInstance.cpp ├── DSoundInstance.h ├── DSoundManager.cpp ├── DSoundManager.h ├── Debug.cpp ├── Debug.h ├── DescParser.cpp ├── DescParser.h ├── Dialog.cpp ├── Dialog.h ├── DialogButton.cpp ├── DialogButton.h ├── DialogListener.h ├── DirectXErrorString.cpp ├── DirectXErrorString.h ├── EditListener.h ├── EditWidget.cpp ├── EditWidget.h ├── FModLoader.cpp ├── FModLoader.h ├── FModMusicInterface.cpp ├── FModMusicInterface.h ├── FModSoundInstance.cpp ├── FModSoundInstance.h ├── FModSoundManager.cpp ├── FModSoundManager.h ├── Flags.cpp ├── Flags.h ├── FlashWidget.cpp ├── FlashWidget.h ├── Font.cpp ├── Font.h ├── GENERIC_DrawLineAA.inc ├── Graphics.cpp ├── Graphics.h ├── GraphicsBuild.cpp ├── HTTPTransfer.cpp ├── HTTPTransfer.h ├── HyperlinkWidget.cpp ├── HyperlinkWidget.h ├── Image.cpp ├── Image.h ├── ImageFont.cpp ├── ImageFont.h ├── Insets.cpp ├── Insets.h ├── KeyCodes.cpp ├── KeyCodes.h ├── ListListener.h ├── ListWidget.cpp ├── ListWidget.h ├── MI_AdditiveBlt.inc ├── MI_BltRotated.inc ├── MI_BltRotated_Additive.inc ├── MI_GetNativeAlphaData.inc ├── MI_GetRLAlphaData.inc ├── MI_NormalBlt.inc ├── MI_SlowStretchBlt.inc ├── MTRand.cpp ├── MTRand.h ├── MemoryImage.cpp ├── MemoryImage.h ├── MemoryOuputModule.cpp ├── MiscBuild.cpp ├── MiscBuildBase.cpp ├── ModVal.cpp ├── ModVal.h ├── MusicInterface.cpp ├── MusicInterface.h ├── NativeDisplay.cpp ├── NativeDisplay.h ├── PerfTimer.cpp ├── PerfTimer.h ├── Point.h ├── PropertiesParser.cpp ├── PropertiesParser.h ├── Quantize.cpp ├── Quantize.h ├── Ratio.cpp ├── Ratio.h ├── ReadMe.txt ├── Rect.h ├── ResourceManager.cpp ├── ResourceManager.h ├── SEHCatcher.cpp ├── SEHCatcher.h ├── SWTri.cpp ├── SWTri.h ├── SWTri_DrawTriangle.cpp ├── SWTri_DrawTriangleInc1.cpp ├── SWTri_DrawTriangleInc2.cpp ├── SWTri_GetTexel.cpp ├── SWTri_Loop.cpp ├── SWTri_Pixel555.cpp ├── SWTri_Pixel565.cpp ├── SWTri_Pixel888.cpp ├── SWTri_Pixel8888.cpp ├── SWTri_TexelARGB.cpp ├── ScrollListener.h ├── ScrollbarWidget.cpp ├── ScrollbarWidget.h ├── ScrollbuttonWidget.cpp ├── ScrollbuttonWidget.h ├── SexyAppBase VS2005 WideString.vcproj ├── SexyAppBase VS2005.vcproj ├── SexyAppBase WideString.vcproj ├── SexyAppBase.cpp ├── SexyAppBase.dsp ├── SexyAppBase.h ├── SexyAppBase.vcproj ├── SexyAppFramework.vcproj ├── SexyMatrix.cpp ├── SexyMatrix.h ├── SexyVector.h ├── SharedImage.cpp ├── SharedImage.h ├── Slider.cpp ├── Slider.h ├── SliderListener.h ├── SmartPtr.h ├── SoundBuild.cpp ├── SoundInstance.h ├── SoundManager.h ├── SysFont.cpp ├── SysFont.h ├── TextWidget.cpp ├── TextWidget.h ├── TriVertex.h ├── Widget.cpp ├── Widget.h ├── WidgetBuildBase.cpp ├── WidgetContainer.cpp ├── WidgetContainer.h ├── WidgetManager.cpp ├── WidgetManager.h ├── XMLParser.cpp ├── XMLParser.h ├── bass18.h ├── bass24.h ├── dsoundversion.h ├── fmod.h ├── memmgr.h ├── ogg ├── COPYING ├── asm_arm.h ├── backends.h ├── bitwise.c ├── block.c ├── codebook.c ├── codebook.h ├── codec_internal.h ├── config_types.h ├── floor0.c ├── floor1.c ├── framing.c ├── info.c ├── ivorbiscodec.h ├── ivorbisfile.h ├── lsp_lookup.h ├── mapping0.c ├── mdct.c ├── mdct.h ├── mdct_lookup.h ├── misc.h ├── ogg.h ├── os.h ├── os_types.h ├── registry.c ├── registry.h ├── res012.c ├── sharedbook.c ├── synthesis.c ├── vorbisfile.c ├── window.c ├── window.h └── window_lookup.h ├── old_Quantize.cpp └── scrnsave.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/d3d8/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/3rdparty/d3d8/d3d8.h -------------------------------------------------------------------------------- /3rdparty/d3d8/d3d8caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/3rdparty/d3d8/d3d8caps.h -------------------------------------------------------------------------------- /3rdparty/d3d8/d3d8types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/3rdparty/d3d8/d3d8types.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /MinGW-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/MinGW-toolchain.cmake -------------------------------------------------------------------------------- /Other Licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/Other Licenses.txt -------------------------------------------------------------------------------- /PopCap Framework License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/PopCap Framework License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/README.md -------------------------------------------------------------------------------- /source/CircleShoot/AdventureScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/AdventureScreen.cpp -------------------------------------------------------------------------------- /source/CircleShoot/AdventureScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/AdventureScreen.h -------------------------------------------------------------------------------- /source/CircleShoot/Ball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Ball.cpp -------------------------------------------------------------------------------- /source/CircleShoot/Ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Ball.h -------------------------------------------------------------------------------- /source/CircleShoot/BlendedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/BlendedImage.cpp -------------------------------------------------------------------------------- /source/CircleShoot/BlendedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/BlendedImage.h -------------------------------------------------------------------------------- /source/CircleShoot/Board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Board.cpp -------------------------------------------------------------------------------- /source/CircleShoot/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Board.h -------------------------------------------------------------------------------- /source/CircleShoot/Bullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Bullet.cpp -------------------------------------------------------------------------------- /source/CircleShoot/Bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Bullet.h -------------------------------------------------------------------------------- /source/CircleShoot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CMakeLists.txt -------------------------------------------------------------------------------- /source/CircleShoot/CircleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleButton.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CircleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleButton.h -------------------------------------------------------------------------------- /source/CircleShoot/CircleCheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleCheckbox.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CircleCheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleCheckbox.h -------------------------------------------------------------------------------- /source/CircleShoot/CircleCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleCommon.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CircleCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleCommon.h -------------------------------------------------------------------------------- /source/CircleShoot/CircleDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleDialog.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CircleDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleDialog.h -------------------------------------------------------------------------------- /source/CircleShoot/CircleShoot.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleShoot.vcproj -------------------------------------------------------------------------------- /source/CircleShoot/CircleShootApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleShootApp.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CircleShootApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CircleShootApp.h -------------------------------------------------------------------------------- /source/CircleShoot/CreateUserDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CreateUserDialog.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CreateUserDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CreateUserDialog.h -------------------------------------------------------------------------------- /source/CircleShoot/CreditsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CreditsScreen.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CreditsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CreditsScreen.h -------------------------------------------------------------------------------- /source/CircleShoot/CurveData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CurveData.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CurveData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CurveData.h -------------------------------------------------------------------------------- /source/CircleShoot/CurveMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CurveMgr.cpp -------------------------------------------------------------------------------- /source/CircleShoot/CurveMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/CurveMgr.h -------------------------------------------------------------------------------- /source/CircleShoot/DataSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/DataSync.cpp -------------------------------------------------------------------------------- /source/CircleShoot/DataSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/DataSync.h -------------------------------------------------------------------------------- /source/CircleShoot/Gun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Gun.cpp -------------------------------------------------------------------------------- /source/CircleShoot/Gun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Gun.h -------------------------------------------------------------------------------- /source/CircleShoot/HelpScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/HelpScreen.cpp -------------------------------------------------------------------------------- /source/CircleShoot/HelpScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/HelpScreen.h -------------------------------------------------------------------------------- /source/CircleShoot/HighScoreMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/HighScoreMgr.cpp -------------------------------------------------------------------------------- /source/CircleShoot/HighScoreMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/HighScoreMgr.h -------------------------------------------------------------------------------- /source/CircleShoot/LevelParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/LevelParser.cpp -------------------------------------------------------------------------------- /source/CircleShoot/LevelParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/LevelParser.h -------------------------------------------------------------------------------- /source/CircleShoot/LoadingScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/LoadingScreen.cpp -------------------------------------------------------------------------------- /source/CircleShoot/LoadingScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/LoadingScreen.h -------------------------------------------------------------------------------- /source/CircleShoot/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Main.cpp -------------------------------------------------------------------------------- /source/CircleShoot/MainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/MainMenu.cpp -------------------------------------------------------------------------------- /source/CircleShoot/MainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/MainMenu.h -------------------------------------------------------------------------------- /source/CircleShoot/MoreGamesScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/MoreGamesScreen.cpp -------------------------------------------------------------------------------- /source/CircleShoot/MoreGamesScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/MoreGamesScreen.h -------------------------------------------------------------------------------- /source/CircleShoot/OptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/OptionsDialog.cpp -------------------------------------------------------------------------------- /source/CircleShoot/OptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/OptionsDialog.h -------------------------------------------------------------------------------- /source/CircleShoot/ParticleMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/ParticleMgr.cpp -------------------------------------------------------------------------------- /source/CircleShoot/ParticleMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/ParticleMgr.h -------------------------------------------------------------------------------- /source/CircleShoot/PracticeScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/PracticeScreen.cpp -------------------------------------------------------------------------------- /source/CircleShoot/PracticeScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/PracticeScreen.h -------------------------------------------------------------------------------- /source/CircleShoot/ProfileMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/ProfileMgr.cpp -------------------------------------------------------------------------------- /source/CircleShoot/ProfileMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/ProfileMgr.h -------------------------------------------------------------------------------- /source/CircleShoot/Res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Res.cpp -------------------------------------------------------------------------------- /source/CircleShoot/Res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Res.h -------------------------------------------------------------------------------- /source/CircleShoot/SoundMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/SoundMgr.cpp -------------------------------------------------------------------------------- /source/CircleShoot/SoundMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/SoundMgr.h -------------------------------------------------------------------------------- /source/CircleShoot/SpriteMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/SpriteMgr.cpp -------------------------------------------------------------------------------- /source/CircleShoot/SpriteMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/SpriteMgr.h -------------------------------------------------------------------------------- /source/CircleShoot/StatsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/StatsDialog.cpp -------------------------------------------------------------------------------- /source/CircleShoot/StatsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/StatsDialog.h -------------------------------------------------------------------------------- /source/CircleShoot/TransitionMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/TransitionMgr.cpp -------------------------------------------------------------------------------- /source/CircleShoot/TransitionMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/TransitionMgr.h -------------------------------------------------------------------------------- /source/CircleShoot/UserDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/UserDialog.cpp -------------------------------------------------------------------------------- /source/CircleShoot/UserDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/UserDialog.h -------------------------------------------------------------------------------- /source/CircleShoot/WayPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/WayPoint.cpp -------------------------------------------------------------------------------- /source/CircleShoot/WayPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/WayPoint.h -------------------------------------------------------------------------------- /source/CircleShoot/WidgetMover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/WidgetMover.cpp -------------------------------------------------------------------------------- /source/CircleShoot/WidgetMover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/WidgetMover.h -------------------------------------------------------------------------------- /source/CircleShoot/WorkerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/WorkerThread.cpp -------------------------------------------------------------------------------- /source/CircleShoot/WorkerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/WorkerThread.h -------------------------------------------------------------------------------- /source/CircleShoot/Zuma.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Zuma.ico -------------------------------------------------------------------------------- /source/CircleShoot/Zuma.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Zuma.rc -------------------------------------------------------------------------------- /source/CircleShoot/Zuma_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/CircleShoot/Zuma_Prefix.pch -------------------------------------------------------------------------------- /source/ImageLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/CMakeLists.txt -------------------------------------------------------------------------------- /source/ImageLib/ImageLib VS2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/ImageLib VS2005.vcproj -------------------------------------------------------------------------------- /source/ImageLib/ImageLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/ImageLib.cpp -------------------------------------------------------------------------------- /source/ImageLib/ImageLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/ImageLib.dsp -------------------------------------------------------------------------------- /source/ImageLib/ImageLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/ImageLib.h -------------------------------------------------------------------------------- /source/ImageLib/ImageLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/ImageLib.vcproj -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/J2K_Codec.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/J2K_Codec.bas -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/J2K_Codec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/J2K_Codec.cs -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/J2K_Codec.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/J2K_Codec.vb -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/J2K_Control.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/J2K_Control.idl -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/License.txt -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/ReadMe.txt -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/bmp.h -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/file_id.diz -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k-codec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/j2k-codec.dll -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k-codec.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/j2k-codec.exp -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k-codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/j2k-codec.h -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k-codec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/j2k-codec.lib -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k-codec.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://j2k-codec.com/ 3 | -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k-control.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/j2k-control.dll -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/j2k.ico -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/j2k_codec.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/j2k-codec/j2k_codec.pas -------------------------------------------------------------------------------- /source/ImageLib/j2k-codec/purchase.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://j2k-codec.com/order.html 3 | -------------------------------------------------------------------------------- /source/ImageLib/jpeg/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/ansi2knr.1 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/ansi2knr.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/cderror.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/cdjpeg.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/cdjpeg.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/cjpeg.1 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/cjpeg.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/ckconfig.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/coderules.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/coderules.doc -------------------------------------------------------------------------------- /source/ImageLib/jpeg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/config.guess -------------------------------------------------------------------------------- /source/ImageLib/jpeg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/config.sub -------------------------------------------------------------------------------- /source/ImageLib/jpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/configure -------------------------------------------------------------------------------- /source/ImageLib/jpeg/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/djpeg.1 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/djpeg.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/example.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/install-sh -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcapimin.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcapistd.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jccoefct.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jccolor.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jchuff.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jchuff.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcinit.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcmainct.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcmarker.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcmaster.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcomapi.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.bcc -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.cfg -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.dj -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.mac -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.manx -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.mc6 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.sas -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.st -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.vc -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.vms -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jconfig.wat -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcparam.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcphuff.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcprepct.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jcsample.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jctrans.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdapimin.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdapistd.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdatadst.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdcolor.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdct.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdhuff.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdhuff.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdinput.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdmainct.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdmarker.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdmaster.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdmerge.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdphuff.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdpostct.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdsample.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jdtrans.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jerror.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jerror.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jfdctint.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jidctflt.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jidctfst.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jidctint.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jidctred.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jinclude.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemansi.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemdos.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemdosa.asm -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemmac.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemname.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemnobs.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmemsys.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jpegint.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jpeglib.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jpegtran.1 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jpegtran.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jquant1.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jquant2.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jutils.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/jversion.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/ltconfig -------------------------------------------------------------------------------- /source/ImageLib/jpeg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/ltmain.sh -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makcjpeg.st -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makdjpeg.st -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makeapps.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makeapps.ds -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.ansi -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.bcc -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.cfg -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.dj -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.manx -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.mc6 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.mms -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.sas -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.unix -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.vc -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.vms -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makefile.wat -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makelib.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makelib.ds -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makeproj.mac -------------------------------------------------------------------------------- /source/ImageLib/jpeg/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/makljpeg.st -------------------------------------------------------------------------------- /source/ImageLib/jpeg/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/maktjpeg.st -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdbmp.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdcolmap.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdgif.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdjpgcom.1 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdjpgcom.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdppm.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdrle.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdswitch.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/rdtarga.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/readme -------------------------------------------------------------------------------- /source/ImageLib/jpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/transupp.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/transupp.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/wrbmp.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/wrgif.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/wrjpgcom.1 -------------------------------------------------------------------------------- /source/ImageLib/jpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/wrjpgcom.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/wrppm.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/wrrle.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg/wrtarga.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/COPYRIGHT -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/INSTALL -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/LICENSE -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/NEWS -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/README -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_cm.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_cm.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_config.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_config2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_config2.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_debug.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_debug.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_fix.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_getopt.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_getopt.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_icc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_icc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_icc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_icc.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_iccdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_iccdata.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_image.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_image.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_init.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_init.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_malloc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_malloc.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_math.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_seq.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_seq.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_stream.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_stream.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_string.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_string.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_tvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_tvp.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_tvp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_tvp.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_types.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_version.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jas_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jas_version.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jasper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jasper.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jp2_cod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jp2_cod.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jp2_cod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jp2_cod.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jp2_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jp2_dec.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jp2_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jp2_dec.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jp2_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jp2_enc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_bs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_bs.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_bs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_bs.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_cod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_cod.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_cs.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_cs.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_dec.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_dec.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_enc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_enc.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_fix.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_flt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_flt.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_math.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_math.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mct.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mct.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mqcod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mqcod.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mqcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mqcod.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mqdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mqdec.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mqdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mqdec.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mqenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mqenc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_mqenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_mqenc.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_qmfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_qmfb.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_qmfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_qmfb.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t1cod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t1cod.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t1cod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t1cod.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t1dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t1dec.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t1dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t1dec.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t1enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t1enc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t1enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t1enc.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t2cod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t2cod.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t2cod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t2cod.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t2dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t2dec.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t2dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t2dec.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t2enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t2enc.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_t2enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_t2enc.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_tagtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_tagtree.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_tagtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_tagtree.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_tsfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_tsfb.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_tsfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_tsfb.h -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_util.c -------------------------------------------------------------------------------- /source/ImageLib/jpeg2000/jpc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/jpeg2000/jpc_util.h -------------------------------------------------------------------------------- /source/ImageLib/png/announce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/announce -------------------------------------------------------------------------------- /source/ImageLib/png/changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/changes -------------------------------------------------------------------------------- /source/ImageLib/png/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/example.c -------------------------------------------------------------------------------- /source/ImageLib/png/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/install -------------------------------------------------------------------------------- /source/ImageLib/png/knownbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/knownbug -------------------------------------------------------------------------------- /source/ImageLib/png/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/libpng.3 -------------------------------------------------------------------------------- /source/ImageLib/png/libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/libpng.txt -------------------------------------------------------------------------------- /source/ImageLib/png/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/libpngpf.3 -------------------------------------------------------------------------------- /source/ImageLib/png/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/license -------------------------------------------------------------------------------- /source/ImageLib/png/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/png.5 -------------------------------------------------------------------------------- /source/ImageLib/png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/png.c -------------------------------------------------------------------------------- /source/ImageLib/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/png.h -------------------------------------------------------------------------------- /source/ImageLib/png/pngasmrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngasmrd.h -------------------------------------------------------------------------------- /source/ImageLib/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngconf.h -------------------------------------------------------------------------------- /source/ImageLib/png/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngerror.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngget.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngmem.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngnow.png -------------------------------------------------------------------------------- /source/ImageLib/png/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngpread.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngread.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngrio.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngrtran.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngrutil.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngset.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngtest.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngtest.png -------------------------------------------------------------------------------- /source/ImageLib/png/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngtrans.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngvcrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngvcrd.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngwio.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngwrite.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngwtran.c -------------------------------------------------------------------------------- /source/ImageLib/png/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/pngwutil.c -------------------------------------------------------------------------------- /source/ImageLib/png/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/readme -------------------------------------------------------------------------------- /source/ImageLib/png/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/todo -------------------------------------------------------------------------------- /source/ImageLib/png/y2kinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/png/y2kinfo -------------------------------------------------------------------------------- /source/ImageLib/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/ChangeLog -------------------------------------------------------------------------------- /source/ImageLib/zlib/Make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/Make_vms.com -------------------------------------------------------------------------------- /source/ImageLib/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/Makefile.in -------------------------------------------------------------------------------- /source/ImageLib/zlib/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/Makefile.riscos -------------------------------------------------------------------------------- /source/ImageLib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/adler32.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/algorithm.txt -------------------------------------------------------------------------------- /source/ImageLib/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/compress.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/configure -------------------------------------------------------------------------------- /source/ImageLib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/crc32.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/deflate.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/deflate.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/descrip.mms -------------------------------------------------------------------------------- /source/ImageLib/zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/example.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/faq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/faq -------------------------------------------------------------------------------- /source/ImageLib/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/gzio.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/index -------------------------------------------------------------------------------- /source/ImageLib/zlib/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/infblock.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/infblock.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/infcodes.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/infcodes.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/inffast.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/inffast.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/inffixed.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/inflate.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/inftrees.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/inftrees.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/infutil.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/infutil.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/maketree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/maketree.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/minigzip.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/readme -------------------------------------------------------------------------------- /source/ImageLib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/trees.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/trees.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/uncompr.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/zconf.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/zlib.3 -------------------------------------------------------------------------------- /source/ImageLib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/zlib.h -------------------------------------------------------------------------------- /source/ImageLib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/zutil.c -------------------------------------------------------------------------------- /source/ImageLib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/ImageLib/zlib/zutil.h -------------------------------------------------------------------------------- /source/PakLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/PakLib/CMakeLists.txt -------------------------------------------------------------------------------- /source/PakLib/PakInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/PakLib/PakInterface.cpp -------------------------------------------------------------------------------- /source/PakLib/PakInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/PakLib/PakInterface.h -------------------------------------------------------------------------------- /source/PakLib/PakLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/PakLib/PakLib.vcproj -------------------------------------------------------------------------------- /source/PakLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/PakLib/ReadMe.txt -------------------------------------------------------------------------------- /source/SexyAppFramework/AutoCrit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/AutoCrit.h -------------------------------------------------------------------------------- /source/SexyAppFramework/BassLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/BassLoader.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/BassLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/BassLoader.h -------------------------------------------------------------------------------- /source/SexyAppFramework/BassMusicInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/BassMusicInterface.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/BassMusicInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/BassMusicInterface.h -------------------------------------------------------------------------------- /source/SexyAppFramework/BltRotatedHelper.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/BltRotatedHelper.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Buffer.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Buffer.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ButtonListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ButtonListener.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ButtonWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ButtonWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ButtonWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ButtonWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/CMakeLists.txt -------------------------------------------------------------------------------- /source/SexyAppFramework/Checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Checkbox.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Checkbox.h -------------------------------------------------------------------------------- /source/SexyAppFramework/CheckboxListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/CheckboxListener.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Color.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Color.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Common.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Common.h -------------------------------------------------------------------------------- /source/SexyAppFramework/CritSect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/CritSect.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/CritSect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/CritSect.h -------------------------------------------------------------------------------- /source/SexyAppFramework/CursorWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/CursorWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/CursorWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/CursorWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/D3D8Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/D3D8Helper.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/D3D8Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/D3D8Helper.h -------------------------------------------------------------------------------- /source/SexyAppFramework/D3DInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/D3DInterface.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/D3DInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/D3DInterface.h -------------------------------------------------------------------------------- /source/SexyAppFramework/D3DTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/D3DTester.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/D3DTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/D3DTester.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_Additive.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_Additive.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_AlphaBlt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_AlphaBlt.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_BltRotated.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_BltRotated.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_BltRotated_Additive.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_BltRotated_Additive.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_FastBlt_NoAlpha.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_FastBlt_NoAlpha.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_FastStretch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_FastStretch.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_FastStretch_Additive.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_FastStretch_Additive.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDI_NormalBlt_Volatile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDI_NormalBlt_Volatile.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/DDImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDImage.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/DDImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDImage.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DDInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDInterface.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/DDInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DDInterface.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DSoundInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DSoundInstance.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/DSoundInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DSoundInstance.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DSoundManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DSoundManager.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/DSoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DSoundManager.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Debug.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Debug.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DescParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DescParser.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/DescParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DescParser.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Dialog.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Dialog.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DialogButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DialogButton.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/DialogButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DialogButton.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DialogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DialogListener.h -------------------------------------------------------------------------------- /source/SexyAppFramework/DirectXErrorString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DirectXErrorString.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/DirectXErrorString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/DirectXErrorString.h -------------------------------------------------------------------------------- /source/SexyAppFramework/EditListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/EditListener.h -------------------------------------------------------------------------------- /source/SexyAppFramework/EditWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/EditWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/EditWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/EditWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/FModLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModLoader.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/FModLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModLoader.h -------------------------------------------------------------------------------- /source/SexyAppFramework/FModMusicInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModMusicInterface.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/FModMusicInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModMusicInterface.h -------------------------------------------------------------------------------- /source/SexyAppFramework/FModSoundInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModSoundInstance.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/FModSoundInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModSoundInstance.h -------------------------------------------------------------------------------- /source/SexyAppFramework/FModSoundManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModSoundManager.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/FModSoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FModSoundManager.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Flags.cpp: -------------------------------------------------------------------------------- 1 | #include "Flags.h" 2 | 3 | -------------------------------------------------------------------------------- /source/SexyAppFramework/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Flags.h -------------------------------------------------------------------------------- /source/SexyAppFramework/FlashWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FlashWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/FlashWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/FlashWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Font.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Font.h -------------------------------------------------------------------------------- /source/SexyAppFramework/GENERIC_DrawLineAA.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/GENERIC_DrawLineAA.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Graphics.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Graphics.h -------------------------------------------------------------------------------- /source/SexyAppFramework/GraphicsBuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/GraphicsBuild.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/HTTPTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/HTTPTransfer.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/HTTPTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/HTTPTransfer.h -------------------------------------------------------------------------------- /source/SexyAppFramework/HyperlinkWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/HyperlinkWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/HyperlinkWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/HyperlinkWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Image.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Image.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ImageFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ImageFont.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ImageFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ImageFont.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Insets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Insets.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Insets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Insets.h -------------------------------------------------------------------------------- /source/SexyAppFramework/KeyCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/KeyCodes.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/KeyCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/KeyCodes.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ListListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ListListener.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ListWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ListWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/MI_AdditiveBlt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MI_AdditiveBlt.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/MI_BltRotated.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MI_BltRotated.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/MI_BltRotated_Additive.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MI_BltRotated_Additive.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/MI_GetNativeAlphaData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MI_GetNativeAlphaData.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/MI_GetRLAlphaData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MI_GetRLAlphaData.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/MI_NormalBlt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MI_NormalBlt.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/MI_SlowStretchBlt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MI_SlowStretchBlt.inc -------------------------------------------------------------------------------- /source/SexyAppFramework/MTRand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MTRand.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/MTRand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MTRand.h -------------------------------------------------------------------------------- /source/SexyAppFramework/MemoryImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MemoryImage.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/MemoryImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MemoryImage.h -------------------------------------------------------------------------------- /source/SexyAppFramework/MemoryOuputModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MemoryOuputModule.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/MiscBuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MiscBuild.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/MiscBuildBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MiscBuildBase.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ModVal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ModVal.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ModVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ModVal.h -------------------------------------------------------------------------------- /source/SexyAppFramework/MusicInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MusicInterface.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/MusicInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/MusicInterface.h -------------------------------------------------------------------------------- /source/SexyAppFramework/NativeDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/NativeDisplay.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/NativeDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/NativeDisplay.h -------------------------------------------------------------------------------- /source/SexyAppFramework/PerfTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/PerfTimer.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/PerfTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/PerfTimer.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Point.h -------------------------------------------------------------------------------- /source/SexyAppFramework/PropertiesParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/PropertiesParser.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/PropertiesParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/PropertiesParser.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Quantize.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Quantize.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Ratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Ratio.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Ratio.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ReadMe.txt -------------------------------------------------------------------------------- /source/SexyAppFramework/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Rect.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ResourceManager.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ResourceManager.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SEHCatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SEHCatcher.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SEHCatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SEHCatcher.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_DrawTriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_DrawTriangle.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_DrawTriangleInc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_DrawTriangleInc1.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_DrawTriangleInc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_DrawTriangleInc2.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_GetTexel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_GetTexel.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_Loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_Loop.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_Pixel555.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_Pixel555.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_Pixel565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_Pixel565.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_Pixel888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_Pixel888.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_Pixel8888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_Pixel8888.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SWTri_TexelARGB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SWTri_TexelARGB.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ScrollListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ScrollListener.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ScrollbarWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ScrollbarWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ScrollbarWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ScrollbarWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ScrollbuttonWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ScrollbuttonWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/ScrollbuttonWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ScrollbuttonWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppBase VS2005 WideString.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppBase VS2005 WideString.vcproj -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppBase VS2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppBase VS2005.vcproj -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppBase WideString.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppBase WideString.vcproj -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppBase.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppBase.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppBase.dsp -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppBase.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppBase.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppBase.vcproj -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyAppFramework.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyAppFramework.vcproj -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyMatrix.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyMatrix.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SexyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SexyVector.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SharedImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SharedImage.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SharedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SharedImage.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Slider.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Slider.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SliderListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SliderListener.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SmartPtr.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SoundBuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SoundBuild.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SoundInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SoundInstance.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SoundManager.h -------------------------------------------------------------------------------- /source/SexyAppFramework/SysFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SysFont.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/SysFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/SysFont.h -------------------------------------------------------------------------------- /source/SexyAppFramework/TextWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/TextWidget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/TextWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/TextWidget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/TriVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/TriVertex.h -------------------------------------------------------------------------------- /source/SexyAppFramework/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Widget.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/Widget.h -------------------------------------------------------------------------------- /source/SexyAppFramework/WidgetBuildBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/WidgetBuildBase.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/WidgetContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/WidgetContainer.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/WidgetContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/WidgetContainer.h -------------------------------------------------------------------------------- /source/SexyAppFramework/WidgetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/WidgetManager.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/WidgetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/WidgetManager.h -------------------------------------------------------------------------------- /source/SexyAppFramework/XMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/XMLParser.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/XMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/XMLParser.h -------------------------------------------------------------------------------- /source/SexyAppFramework/bass18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/bass18.h -------------------------------------------------------------------------------- /source/SexyAppFramework/bass24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/bass24.h -------------------------------------------------------------------------------- /source/SexyAppFramework/dsoundversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/dsoundversion.h -------------------------------------------------------------------------------- /source/SexyAppFramework/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/fmod.h -------------------------------------------------------------------------------- /source/SexyAppFramework/memmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/memmgr.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/COPYING -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/asm_arm.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/backends.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/bitwise.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/block.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/codebook.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/codebook.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/codec_internal.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/config_types.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/floor0.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/floor1.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/framing.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/info.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/ivorbiscodec.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/ivorbisfile.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/lsp_lookup.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/mapping0.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/mdct.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/mdct.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/mdct_lookup.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/misc.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/ogg.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/os.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/os_types.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/registry.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/registry.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/res012.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/sharedbook.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/synthesis.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/vorbisfile.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/window.c -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/window.h -------------------------------------------------------------------------------- /source/SexyAppFramework/ogg/window_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/ogg/window_lookup.h -------------------------------------------------------------------------------- /source/SexyAppFramework/old_Quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/old_Quantize.cpp -------------------------------------------------------------------------------- /source/SexyAppFramework/scrnsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alula/CircleShootApp/HEAD/source/SexyAppFramework/scrnsave.c --------------------------------------------------------------------------------