├── .gitattributes ├── .gitignore ├── 3rdparty ├── AntTweakBar │ ├── .gitignore │ ├── AntTweakBar_Doc.url │ ├── ChangeLog.txt │ ├── Clean.bat │ ├── License.txt │ ├── Readme.txt │ ├── include │ │ └── AntTweakBar.h │ ├── lib │ │ └── Readme.txt │ └── src │ │ ├── AntPerfTimer.h │ │ ├── AntTweakBar.rc │ │ ├── AntTweakBar.vcproj │ │ ├── AntTweakBar.vcxproj │ │ ├── AntTweakBar.vcxproj.filters │ │ ├── AntTweakBar_VS2008.sln │ │ ├── AntTweakBar_VS2012.sln │ │ ├── LoadOGL.cpp │ │ ├── LoadOGL.h │ │ ├── LoadOGLCore.cpp │ │ ├── LoadOGLCore.h │ │ ├── Makefile │ │ ├── Makefile.linux │ │ ├── Makefile.osx │ │ ├── MiniGLFW.h │ │ ├── MiniGLUT.h │ │ ├── MiniSDL12.h │ │ ├── MiniSDL13.h │ │ ├── MiniSFML16.h │ │ ├── Readme.txt │ │ ├── TwBar.cpp │ │ ├── TwBar.h │ │ ├── TwColors.cpp │ │ ├── TwColors.h │ │ ├── TwDirect3D10.cpp │ │ ├── TwDirect3D10.h │ │ ├── TwDirect3D11.cpp │ │ ├── TwDirect3D11.h │ │ ├── TwDirect3D11.hlsl │ │ ├── TwDirect3D9.cpp │ │ ├── TwDirect3D9.h │ │ ├── TwEventGLFW.c │ │ ├── TwEventGLUT.c │ │ ├── TwEventSDL.c │ │ ├── TwEventSDL12.c │ │ ├── TwEventSDL13.c │ │ ├── TwEventSFML.cpp │ │ ├── TwEventWin.c │ │ ├── TwEventX11.c │ │ ├── TwFonts.cpp │ │ ├── TwFonts.h │ │ ├── TwGraph.h │ │ ├── TwMgr.cpp │ │ ├── TwMgr.h │ │ ├── TwOpenGL.cpp │ │ ├── TwOpenGL.h │ │ ├── TwOpenGLCore.cpp │ │ ├── TwOpenGLCore.h │ │ ├── TwPrecomp.cpp │ │ ├── TwPrecomp.h │ │ ├── d3d10vs2003.h │ │ ├── disable-dx.patch │ │ ├── res │ │ ├── .gitattributes │ │ ├── FontChars.txt │ │ ├── FontFixed1.pgm │ │ ├── FontLargeAA.pgm │ │ ├── FontNormal.pgm │ │ ├── FontNormalAA.pgm │ │ ├── FontSmall.pgm │ │ ├── TwXCursors.h │ │ ├── cur00000.cur │ │ ├── cur00001.cur │ │ ├── cur00002.cur │ │ ├── cur00003.cur │ │ ├── cur00004.cur │ │ ├── cur00005.cur │ │ ├── cur00006.cur │ │ ├── cur00007.cur │ │ ├── cur00008.cur │ │ ├── cur00009.cur │ │ ├── cur00010.cur │ │ ├── cur00011.cur │ │ ├── cur00012.cur │ │ ├── cur00013.cur │ │ ├── curs00.pbm │ │ ├── curs01.pbm │ │ ├── curs02.pbm │ │ ├── curs03.pbm │ │ ├── curs04.pbm │ │ ├── curs05.pbm │ │ ├── curs06.pbm │ │ ├── curs07.pbm │ │ ├── curs08.pbm │ │ ├── curs09.pbm │ │ ├── curs10.pbm │ │ ├── curs11.pbm │ │ ├── curs12.pbm │ │ ├── curs13.pbm │ │ ├── mask00.pbm │ │ ├── mask01.pbm │ │ ├── mask02.pbm │ │ ├── mask03.pbm │ │ ├── mask04.pbm │ │ ├── mask05.pbm │ │ ├── mask06.pbm │ │ ├── mask07.pbm │ │ ├── mask08.pbm │ │ ├── mask09.pbm │ │ ├── mask10.pbm │ │ ├── mask11.pbm │ │ ├── mask12.pbm │ │ └── mask13.pbm │ │ └── resource.h ├── JLib │ ├── CharacterBox.cc │ ├── CharacterBox.h │ ├── CodeFinder.cc │ ├── CodeFinder.h │ ├── ConsoleCore.cc │ ├── ConsoleCore.h │ ├── ConsoleDefinitions.h │ ├── ConsoleFormat.cc │ ├── ConsoleFormat.h │ ├── ConsoleMenu.cc │ ├── ConsoleMenu.h │ ├── ConsoleMenuItem.cc │ ├── ConsoleMenuItem.h │ └── demo.cpp ├── SDL │ ├── SDL.h │ ├── SDL_active.h │ ├── SDL_audio.h │ ├── SDL_byteorder.h │ ├── SDL_cdrom.h │ ├── SDL_config.h │ ├── SDL_config.h.default │ ├── SDL_config.h.in │ ├── SDL_config_dreamcast.h │ ├── SDL_config_macos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_nds.h │ ├── SDL_config_os2.h │ ├── SDL_config_symbian.h │ ├── SDL_config_win32.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_getenv.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keysym.h │ ├── SDL_loadso.h │ ├── SDL_main.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_platform.h │ ├── SDL_quit.h │ ├── SDL_rwops.h │ ├── SDL_stdinc.h │ ├── SDL_syswm.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ ├── close_code.h │ ├── doxyfile │ ├── libSDL.a │ └── libSDLmain.a ├── astyle ├── astyle.exe ├── cereal │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── DoxygenLayout.xml │ │ ├── doxygen.in │ │ ├── footer.html │ │ └── mainpage.dox │ ├── include │ │ └── cereal │ │ │ ├── access.hpp │ │ │ ├── archives │ │ │ ├── binary.hpp │ │ │ ├── json.hpp │ │ │ ├── portable_binary.hpp │ │ │ └── xml.hpp │ │ │ ├── cereal.hpp │ │ │ ├── details │ │ │ ├── helpers.hpp │ │ │ ├── polymorphic_impl.hpp │ │ │ ├── static_object.hpp │ │ │ ├── traits.hpp │ │ │ └── util.hpp │ │ │ ├── external │ │ │ ├── base64.hpp │ │ │ ├── rapidjson │ │ │ │ ├── document.h │ │ │ │ ├── filestream.h │ │ │ │ ├── genericstream.h │ │ │ │ ├── internal │ │ │ │ │ ├── pow10.h │ │ │ │ │ ├── stack.h │ │ │ │ │ └── strfunc.h │ │ │ │ ├── license.txt │ │ │ │ ├── prettywriter.h │ │ │ │ ├── rapidjson.h │ │ │ │ ├── reader.h │ │ │ │ ├── stringbuffer.h │ │ │ │ └── writer.h │ │ │ └── rapidxml │ │ │ │ ├── license.txt │ │ │ │ ├── manual.html │ │ │ │ ├── rapidxml.hpp │ │ │ │ ├── rapidxml_iterators.hpp │ │ │ │ ├── rapidxml_print.hpp │ │ │ │ └── rapidxml_utils.hpp │ │ │ └── types │ │ │ ├── array.hpp │ │ │ ├── base_class.hpp │ │ │ ├── bitset.hpp │ │ │ ├── boost_variant.hpp │ │ │ ├── chrono.hpp │ │ │ ├── common.hpp │ │ │ ├── complex.hpp │ │ │ ├── deque.hpp │ │ │ ├── forward_list.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── memory.hpp │ │ │ ├── polymorphic.hpp │ │ │ ├── queue.hpp │ │ │ ├── set.hpp │ │ │ ├── stack.hpp │ │ │ ├── string.hpp │ │ │ ├── tuple.hpp │ │ │ ├── unordered_map.hpp │ │ │ ├── unordered_set.hpp │ │ │ ├── utility.hpp │ │ │ └── vector.hpp │ ├── sandbox │ │ ├── CMakeLists.txt │ │ ├── performance.cpp │ │ ├── sandbox.cpp │ │ ├── sandbox_boostcompat.cpp │ │ ├── sandbox_json.cpp │ │ ├── sandbox_rtti.cpp │ │ └── sandbox_vs.cpp │ ├── scripts │ │ ├── renameincludes.sh │ │ ├── updatecoverage.sh │ │ └── updatedoc.in │ ├── unittests │ │ ├── CMakeLists.txt │ │ ├── array.cpp │ │ ├── basic_string.cpp │ │ ├── bitset.cpp │ │ ├── chrono.cpp │ │ ├── common.hpp │ │ ├── complex.cpp │ │ ├── deque.cpp │ │ ├── forward_list.cpp │ │ ├── list.cpp │ │ ├── load_construct.cpp │ │ ├── map.cpp │ │ ├── memory.cpp │ │ ├── memory_cycles.cpp │ │ ├── multimap.cpp │ │ ├── multiset.cpp │ │ ├── pair.cpp │ │ ├── pod.cpp │ │ ├── polymorphic.cpp │ │ ├── portability_test.cpp │ │ ├── portable_binary_archive.cpp │ │ ├── priority_queue.cpp │ │ ├── queue.cpp │ │ ├── run_portability_test.sh │ │ ├── run_valgrind.sh │ │ ├── set.cpp │ │ ├── stack.cpp │ │ ├── structs.cpp │ │ ├── structs_minimal.cpp │ │ ├── structs_specialized.cpp │ │ ├── tuple.cpp │ │ ├── unordered_loads.cpp │ │ ├── unordered_map.cpp │ │ ├── unordered_multimap.cpp │ │ ├── unordered_multiset.cpp │ │ ├── unordered_set.cpp │ │ ├── vector.cpp │ │ └── versioning.cpp │ └── vs2013 │ │ ├── .gitignore │ │ ├── sandbox │ │ ├── sandbox.vcxproj │ │ └── sandbox.vcxproj.filters │ │ ├── sandbox_json │ │ ├── sandbox_json.vcxproj │ │ └── sandbox_json.vcxproj.filters │ │ ├── sandbox_rtti │ │ ├── sandbox_rtti.vcxproj │ │ └── sandbox_rtti.vcxproj.filters │ │ ├── sandbox_vs │ │ ├── sandbox_vs.vcxproj │ │ └── sandbox_vs.vcxproj.filters │ │ ├── unittests │ │ ├── main.cpp │ │ ├── unittests.vcxproj │ │ └── unittests.vcxproj.filters │ │ └── vs2013.sln ├── d3dhook │ ├── CDllFile.h │ ├── CHookJump.cc │ ├── CHookJump.h │ ├── D3DHook.cc │ ├── D3DHook.h │ └── IRefPtr.h ├── distorm3 │ ├── COPYING │ ├── MANIFEST │ ├── MANIFEST.in │ ├── disOps │ │ ├── disOps.py │ │ ├── x86db.py │ │ ├── x86header.py │ │ └── x86sets.py │ ├── examples │ │ ├── ddk │ │ │ ├── README │ │ │ ├── distorm.ini │ │ │ ├── dummy.c │ │ │ ├── main.c │ │ │ ├── makefile │ │ │ └── sources │ │ ├── java │ │ │ ├── distorm │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ └── src │ │ │ │ │ ├── Main.java │ │ │ │ │ └── diStorm3 │ │ │ │ │ ├── CodeInfo.java │ │ │ │ │ ├── DecodedInst.java │ │ │ │ │ ├── DecodedResult.java │ │ │ │ │ ├── DecomposedInst.java │ │ │ │ │ ├── DecomposedResult.java │ │ │ │ │ ├── OpcodeEnum.java │ │ │ │ │ ├── Opcodes.java │ │ │ │ │ ├── Operand.java │ │ │ │ │ └── distorm3.java │ │ │ ├── jdistorm.c │ │ │ ├── jdistorm.h │ │ │ ├── jdistorm.sln │ │ │ └── jdistorm.vcproj │ │ ├── linux │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── main.cpp │ │ │ ├── main.py │ │ │ ├── test_distorm3.py │ │ │ ├── tests.sln │ │ │ ├── tests.vcxproj │ │ │ └── tests.vcxproj.filters │ │ └── win32 │ │ │ ├── disasm.sln │ │ │ ├── disasm.vcxproj │ │ │ ├── disasm.vcxproj.filters │ │ │ └── main.cpp │ ├── include │ │ ├── distorm.h │ │ └── mnemonics.h │ ├── libdistorm3.a │ ├── make │ │ ├── linux │ │ │ └── Makefile │ │ ├── mac │ │ │ └── Makefile │ │ └── win32 │ │ │ ├── cdistorm.vcxproj │ │ │ ├── cdistorm.vcxproj.filters │ │ │ ├── distorm.sln │ │ │ ├── resource.h │ │ │ └── resource.rc │ ├── python │ │ └── distorm3 │ │ │ ├── __init__.py │ │ │ └── sample.py │ ├── setup.py │ └── src │ │ ├── config.h │ │ ├── decoder.c │ │ ├── decoder.h │ │ ├── distorm.c │ │ ├── instructions.c │ │ ├── instructions.h │ │ ├── insts.c │ │ ├── insts.h │ │ ├── mnemonics.c │ │ ├── operands.c │ │ ├── operands.h │ │ ├── prefix.c │ │ ├── prefix.h │ │ ├── textdefs.c │ │ ├── textdefs.h │ │ ├── wstring.c │ │ ├── wstring.h │ │ └── x86defs.h ├── framedisplay │ ├── Makefile │ ├── clone.cc │ ├── clone.h │ ├── framedisplay.cc │ ├── framedisplay.h │ ├── mbaacc_cg.cc │ ├── mbaacc_character.cc │ ├── mbaacc_framedata.cc │ ├── mbaacc_framedisplay.cc │ ├── mbaacc_framedisplay.h │ ├── mbaacc_pack.cc │ ├── mbaacc_pack.h │ ├── misc.h │ ├── render.cc │ ├── render.h │ ├── test.cpp │ ├── texture.cc │ └── texture.h ├── freeglut │ ├── freeglut.h │ ├── freeglut_ext.h │ ├── freeglut_std.h │ ├── glut.h │ └── libglut.a ├── glfw │ ├── GLFWReference27.pdf │ ├── glfw.h │ └── libglfw.a ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── build-aux │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure │ ├── configure.ac │ ├── fused-src │ │ └── gtest │ │ │ ├── gtest-all.cc │ │ │ ├── gtest.h │ │ │ └── gtest_main.cc │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ ├── gtest.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ └── test │ │ │ └── Makefile │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj ├── libpng │ ├── libpng.a │ ├── png.h │ └── pngconf.h ├── libz │ ├── libz.a │ ├── zconf.h │ └── zlib.h ├── md5.c ├── md5.h ├── minhook │ ├── .gitignore │ ├── COPYING.txt │ ├── README.md │ ├── build │ │ ├── VC10 │ │ │ ├── MinHook.vcxproj │ │ │ ├── MinHookVC10.sln │ │ │ ├── libMinHook.vcxproj │ │ │ └── libMinHook.vcxproj.filters │ │ ├── VC11 │ │ │ ├── MinHook.vcxproj │ │ │ ├── MinHookVC11.sln │ │ │ ├── libMinHook.vcxproj │ │ │ └── libMinHook.vcxproj.filters │ │ ├── VC12 │ │ │ ├── MinHook.vcxproj │ │ │ ├── MinHookVC12.sln │ │ │ ├── libMinHook.vcxproj │ │ │ └── libMinHook.vcxproj.filters │ │ └── VC9 │ │ │ ├── MinHook.vcproj │ │ │ ├── MinHookVC9.sln │ │ │ └── libMinHook.vcproj │ ├── dll_resources │ │ ├── MinHook.def │ │ ├── MinHook.rc │ │ └── dllmain.cpp │ ├── include │ │ └── MinHook.h │ └── src │ │ ├── buffer.cc │ │ ├── buffer.h │ │ ├── export.cc │ │ ├── hde32 │ │ ├── hde32.c │ │ ├── hde32.h │ │ └── table32.h │ │ ├── hde64 │ │ ├── include │ │ │ └── hde64.h │ │ └── src │ │ │ ├── hde64.c │ │ │ └── table64.h │ │ ├── hook.cc │ │ ├── hook.h │ │ ├── pstdint.h │ │ ├── thread.cc │ │ ├── thread.h │ │ ├── trampoline.cc │ │ └── trampoline.h ├── miniz.c ├── miniz.h ├── optionparser.h └── unzip.exe ├── ChangeLog.txt ├── MBAA.CT ├── Makefile ├── README.md ├── gdb_dll.txt ├── gdb_main.txt ├── lib ├── .gitignore ├── Algorithms.hpp ├── BlockingQueue.hpp ├── ChangeMonitor.cpp ├── ChangeMonitor.hpp ├── Compression.cpp ├── Compression.hpp ├── ConsoleUi.cpp ├── ConsoleUi.hpp ├── Controller.cpp ├── Controller.hpp ├── ControllerManager.cpp ├── ControllerManager.hpp ├── Enum.hpp ├── ErrorStrings.hpp ├── EventManager.cpp ├── EventManager.hpp ├── Exceptions.cpp ├── Exceptions.hpp ├── ExternalIpAddress.cpp ├── ExternalIpAddress.hpp ├── GoBackN.cpp ├── GoBackN.hpp ├── Guid.cpp ├── Guid.hpp ├── HttpDownload.cpp ├── HttpDownload.hpp ├── HttpGet.cpp ├── HttpGet.hpp ├── IpAddrPort.cpp ├── IpAddrPort.hpp ├── JoystickDetector.cpp ├── JoystickDetector.hpp ├── KeyValueStore.cpp ├── KeyValueStore.hpp ├── KeyboardManager.cpp ├── KeyboardManager.hpp ├── KeyboardState.cpp ├── KeyboardState.hpp ├── KeyboardVKeyNames.hpp ├── Logger.cpp ├── Logger.hpp ├── LoggerLogVersion.cpp ├── MemDump.cpp ├── MemDump.hpp ├── MingwSecureApiTrap.cpp ├── MouseManager.cpp ├── MouseManager.hpp ├── Pinger.cpp ├── Pinger.hpp ├── Protocol.cpp ├── Protocol.hpp ├── ProtocolEnums.hpp ├── RollingAverage.hpp ├── SmartSocket.cpp ├── SmartSocket.hpp ├── Socket.cpp ├── Socket.hpp ├── SocketManager.cpp ├── SocketManager.hpp ├── Statistics.hpp ├── StringUtils.cpp ├── StringUtils.hpp ├── TcpSocket.cpp ├── TcpSocket.hpp ├── Thread.cpp ├── Thread.hpp ├── Timer.cpp ├── Timer.hpp ├── TimerManager.cpp ├── TimerManager.hpp ├── UdpSocket.cpp ├── UdpSocket.hpp ├── Version.cpp └── Version.hpp ├── netplay ├── CharacterSelect.cpp ├── CharacterSelect.hpp ├── Constants.hpp ├── ErrorStringsExt.hpp ├── InputsContainer.hpp ├── Messages.hpp ├── NetplayStates.hpp ├── Options.hpp ├── PaletteManager.cpp ├── PaletteManager.hpp ├── ProcessManager.cpp ├── ProcessManager.hpp ├── ReplayManager.cpp ├── ReplayManager.hpp ├── SpectatorManager.cpp └── SpectatorManager.hpp ├── notes.txt ├── res ├── GRP │ └── BgSelect │ │ ├── stsel_en │ │ ├── chr_stsel_en55.dds │ │ ├── chr_stsel_en57.dds │ │ └── chr_stsel_en58.dds │ │ ├── stsel_jp │ │ ├── chr_stsel_jp55.dds │ │ ├── chr_stsel_jp57.dds │ │ └── chr_stsel_jp58.dds │ │ └── stsel_view │ │ ├── chr_stsel_view55.dds │ │ ├── chr_stsel_view57.dds │ │ └── chr_stsel_view58.dds ├── color_wheel_src.png ├── gray_slider.png ├── icon.ico ├── icon.rc ├── icon1.png ├── icon2.png ├── icon3.png ├── icon4.png ├── icon5.png ├── palettes.ico ├── palettes.rc ├── wheel_dark.png └── wheel_light.png ├── scripts ├── .gitignore ├── 3waydiff.py ├── Add_Handler_Protocol.bat ├── attach ├── debug ├── diff.py ├── make_depend ├── make_protocol ├── make_release ├── make_version ├── memsearch ├── monitor ├── profile ├── rand.py ├── rununtildesync ├── server.py ├── setup.sh ├── sync2replay ├── synctest └── upload_latest ├── targets ├── DllAsmHacks.cpp ├── DllAsmHacks.hpp ├── DllControllerManager.cpp ├── DllControllerManager.hpp ├── DllControllerUtils.hpp ├── DllFrameRate.cpp ├── DllFrameRate.hpp ├── DllHacks.cpp ├── DllHacks.hpp ├── DllMain.cpp ├── DllNetplayManager.cpp ├── DllNetplayManager.hpp ├── DllOverlayPrimitives.hpp ├── DllOverlayUi.cpp ├── DllOverlayUi.hpp ├── DllOverlayUiText.cpp ├── DllPaletteManager.cpp ├── DllProcessManager.cpp ├── DllRollbackManager.cpp ├── DllRollbackManager.hpp ├── DllSpectatorManager.cpp ├── Main.cpp ├── Main.hpp ├── MainApp.cpp ├── MainUi.cpp ├── MainUi.hpp ├── MainUpdater.cpp └── MainUpdater.hpp ├── tests ├── Test.GoBackN.cpp ├── Test.Socket.hpp ├── Test.TcpSocket.cpp ├── Test.Timer.cpp ├── Test.UdpSocket.cpp ├── Test.cpp └── Test.hpp └── tools ├── Debugger.cpp ├── Generator.cpp ├── Launcher.cpp ├── PaletteEditor.cpp ├── PaletteEditor.hpp ├── Palettes.cpp └── Updater.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/.gitignore -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/AntTweakBar_Doc.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/AntTweakBar_Doc.url -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/ChangeLog.txt -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/Clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/Clean.bat -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/License.txt -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/Readme.txt -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/include/AntTweakBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/include/AntTweakBar.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/lib/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/lib/Readme.txt -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/AntPerfTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/AntPerfTimer.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/AntTweakBar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/AntTweakBar.rc -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/AntTweakBar.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/AntTweakBar.vcproj -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/AntTweakBar.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/AntTweakBar.vcxproj -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/AntTweakBar.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/AntTweakBar.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/AntTweakBar_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/AntTweakBar_VS2008.sln -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/AntTweakBar_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/AntTweakBar_VS2012.sln -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/LoadOGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/LoadOGL.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/LoadOGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/LoadOGL.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/LoadOGLCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/LoadOGLCore.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/LoadOGLCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/LoadOGLCore.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/Makefile -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/Makefile.linux -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/Makefile.osx -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/MiniGLFW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/MiniGLFW.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/MiniGLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/MiniGLUT.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/MiniSDL12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/MiniSDL12.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/MiniSDL13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/MiniSDL13.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/MiniSFML16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/MiniSFML16.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/Readme.txt -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwBar.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwBar.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwColors.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwColors.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwDirect3D10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwDirect3D10.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwDirect3D10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwDirect3D10.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwDirect3D11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwDirect3D11.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwDirect3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwDirect3D11.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwDirect3D11.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwDirect3D11.hlsl -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwDirect3D9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwDirect3D9.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwDirect3D9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwDirect3D9.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventGLFW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventGLFW.c -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventGLUT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventGLUT.c -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventSDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventSDL.c -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventSDL12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventSDL12.c -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventSDL13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventSDL13.c -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventSFML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventSFML.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventWin.c -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwEventX11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwEventX11.c -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwFonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwFonts.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwFonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwFonts.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwGraph.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwMgr.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwMgr.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwOpenGL.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwOpenGL.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwOpenGLCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwOpenGLCore.cpp -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwOpenGLCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwOpenGLCore.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwPrecomp.cpp: -------------------------------------------------------------------------------- 1 | #include "TwPrecomp.h" 2 | -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/TwPrecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/TwPrecomp.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/d3d10vs2003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/d3d10vs2003.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/disable-dx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/disable-dx.patch -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/.gitattributes -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/FontChars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/FontChars.txt -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/FontFixed1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/FontFixed1.pgm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/FontLargeAA.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/FontLargeAA.pgm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/FontNormal.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/FontNormal.pgm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/FontNormalAA.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/FontNormalAA.pgm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/FontSmall.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/FontSmall.pgm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/TwXCursors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/TwXCursors.h -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00000.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00000.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00001.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00001.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00002.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00002.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00003.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00003.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00004.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00004.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00005.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00005.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00006.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00006.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00007.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00007.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00008.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00008.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00009.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00009.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00010.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00010.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00011.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00011.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00012.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00012.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/cur00013.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/cur00013.cur -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs00.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs00.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs01.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs01.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs02.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs02.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs03.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs03.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs04.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs04.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs05.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs05.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs06.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs06.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs07.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs07.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs08.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs08.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs09.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs09.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs10.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs10.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs11.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs11.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs12.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs12.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/curs13.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/curs13.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask00.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask00.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask01.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask01.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask02.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask02.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask03.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask03.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask04.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask04.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask05.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask05.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask06.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask06.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask07.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask07.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask08.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask08.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask09.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask09.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask10.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask10.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask11.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask11.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask12.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask12.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/res/mask13.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/res/mask13.pbm -------------------------------------------------------------------------------- /3rdparty/AntTweakBar/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/AntTweakBar/src/resource.h -------------------------------------------------------------------------------- /3rdparty/JLib/CharacterBox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/CharacterBox.cc -------------------------------------------------------------------------------- /3rdparty/JLib/CharacterBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/CharacterBox.h -------------------------------------------------------------------------------- /3rdparty/JLib/CodeFinder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/CodeFinder.cc -------------------------------------------------------------------------------- /3rdparty/JLib/CodeFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/CodeFinder.h -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleCore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleCore.cc -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleCore.h -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleDefinitions.h -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleFormat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleFormat.cc -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleFormat.h -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleMenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleMenu.cc -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleMenu.h -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleMenuItem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleMenuItem.cc -------------------------------------------------------------------------------- /3rdparty/JLib/ConsoleMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/ConsoleMenuItem.h -------------------------------------------------------------------------------- /3rdparty/JLib/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/JLib/demo.cpp -------------------------------------------------------------------------------- /3rdparty/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_active.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_audio.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_byteorder.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_cdrom.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config.h.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config.h.default -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config.h.in -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_macos.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_macosx.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_minimal.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_nds.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_os2.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_symbian.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_config_win32.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_copying.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_endian.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_error.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_events.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_getenv.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_main.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_name.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_platform.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_quit.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_thread.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_timer.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_types.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_version.h -------------------------------------------------------------------------------- /3rdparty/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/SDL_video.h -------------------------------------------------------------------------------- /3rdparty/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/begin_code.h -------------------------------------------------------------------------------- /3rdparty/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/close_code.h -------------------------------------------------------------------------------- /3rdparty/SDL/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/doxyfile -------------------------------------------------------------------------------- /3rdparty/SDL/libSDL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/libSDL.a -------------------------------------------------------------------------------- /3rdparty/SDL/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/SDL/libSDLmain.a -------------------------------------------------------------------------------- /3rdparty/astyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/astyle -------------------------------------------------------------------------------- /3rdparty/astyle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/astyle.exe -------------------------------------------------------------------------------- /3rdparty/cereal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/.gitignore -------------------------------------------------------------------------------- /3rdparty/cereal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/.travis.yml -------------------------------------------------------------------------------- /3rdparty/cereal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/cereal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/LICENSE -------------------------------------------------------------------------------- /3rdparty/cereal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/README.md -------------------------------------------------------------------------------- /3rdparty/cereal/doc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/doc/DoxygenLayout.xml -------------------------------------------------------------------------------- /3rdparty/cereal/doc/doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/doc/doxygen.in -------------------------------------------------------------------------------- /3rdparty/cereal/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/doc/footer.html -------------------------------------------------------------------------------- /3rdparty/cereal/doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/doc/mainpage.dox -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/access.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/archives/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/archives/binary.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/archives/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/archives/json.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/archives/portable_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/archives/portable_binary.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/archives/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/archives/xml.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/cereal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/cereal.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/details/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/details/helpers.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/details/polymorphic_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/details/polymorphic_impl.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/details/static_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/details/static_object.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/details/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/details/traits.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/details/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/details/util.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/base64.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/document.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/filestream.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/genericstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/genericstream.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/license.txt -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/reader.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidjson/writer.h -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidxml/license.txt -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidxml/manual.html -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/external/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/external/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/array.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/base_class.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/bitset.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/boost_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/boost_variant.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/chrono.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/common.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/complex.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/deque.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/forward_list.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/list.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/map.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/memory.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/polymorphic.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/queue.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/set.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/stack.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/string.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/tuple.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/unordered_map.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/unordered_set.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/utility.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/include/cereal/types/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/include/cereal/types/vector.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/sandbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/sandbox/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/cereal/sandbox/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/sandbox/performance.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/sandbox/sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/sandbox/sandbox.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/sandbox/sandbox_boostcompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/sandbox/sandbox_boostcompat.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/sandbox/sandbox_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/sandbox/sandbox_json.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/sandbox/sandbox_rtti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/sandbox/sandbox_rtti.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/sandbox/sandbox_vs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/sandbox/sandbox_vs.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/scripts/renameincludes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/scripts/renameincludes.sh -------------------------------------------------------------------------------- /3rdparty/cereal/scripts/updatecoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/scripts/updatecoverage.sh -------------------------------------------------------------------------------- /3rdparty/cereal/scripts/updatedoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/scripts/updatedoc.in -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/array.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/basic_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/basic_string.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/bitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/bitset.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/chrono.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/common.hpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/complex.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/deque.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/forward_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/forward_list.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/list.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/load_construct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/load_construct.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/map.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/memory.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/memory_cycles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/memory_cycles.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/multimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/multimap.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/multiset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/multiset.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/pair.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/pod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/pod.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/polymorphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/polymorphic.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/portability_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/portability_test.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/portable_binary_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/portable_binary_archive.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/priority_queue.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/queue.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/run_portability_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/run_portability_test.sh -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/run_valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/run_valgrind.sh -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/set.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/stack.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/structs.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/structs_minimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/structs_minimal.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/structs_specialized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/structs_specialized.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/tuple.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/unordered_loads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/unordered_loads.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/unordered_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/unordered_map.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/unordered_multimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/unordered_multimap.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/unordered_multiset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/unordered_multiset.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/unordered_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/unordered_set.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/vector.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/unittests/versioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/unittests/versioning.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/.gitignore: -------------------------------------------------------------------------------- 1 | */Debug 2 | */Release 3 | */x64 4 | -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox/sandbox.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox/sandbox.vcxproj -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox/sandbox.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox/sandbox.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox_json/sandbox_json.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox_json/sandbox_json.vcxproj -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox_json/sandbox_json.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox_json/sandbox_json.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox_rtti/sandbox_rtti.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox_rtti/sandbox_rtti.vcxproj -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox_rtti/sandbox_rtti.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox_rtti/sandbox_rtti.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox_vs/sandbox_vs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox_vs/sandbox_vs.vcxproj -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/sandbox_vs/sandbox_vs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/sandbox_vs/sandbox_vs.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/unittests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/unittests/main.cpp -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/unittests/unittests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/unittests/unittests.vcxproj -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/unittests/unittests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/unittests/unittests.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/cereal/vs2013/vs2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/cereal/vs2013/vs2013.sln -------------------------------------------------------------------------------- /3rdparty/d3dhook/CDllFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/d3dhook/CDllFile.h -------------------------------------------------------------------------------- /3rdparty/d3dhook/CHookJump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/d3dhook/CHookJump.cc -------------------------------------------------------------------------------- /3rdparty/d3dhook/CHookJump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/d3dhook/CHookJump.h -------------------------------------------------------------------------------- /3rdparty/d3dhook/D3DHook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/d3dhook/D3DHook.cc -------------------------------------------------------------------------------- /3rdparty/d3dhook/D3DHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/d3dhook/D3DHook.h -------------------------------------------------------------------------------- /3rdparty/d3dhook/IRefPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/d3dhook/IRefPtr.h -------------------------------------------------------------------------------- /3rdparty/distorm3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/COPYING -------------------------------------------------------------------------------- /3rdparty/distorm3/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/MANIFEST -------------------------------------------------------------------------------- /3rdparty/distorm3/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/MANIFEST.in -------------------------------------------------------------------------------- /3rdparty/distorm3/disOps/disOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/disOps/disOps.py -------------------------------------------------------------------------------- /3rdparty/distorm3/disOps/x86db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/disOps/x86db.py -------------------------------------------------------------------------------- /3rdparty/distorm3/disOps/x86header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/disOps/x86header.py -------------------------------------------------------------------------------- /3rdparty/distorm3/disOps/x86sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/disOps/x86sets.py -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/ddk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/ddk/README -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/ddk/distorm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/ddk/distorm.ini -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/ddk/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/ddk/dummy.c -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/ddk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/ddk/main.c -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/ddk/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/ddk/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/ddk/sources -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/.classpath -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/.project -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/Main.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/CodeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/CodeInfo.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecodedInst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecodedInst.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecodedResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecodedResult.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecomposedInst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecomposedInst.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecomposedResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/DecomposedResult.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/OpcodeEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/OpcodeEnum.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/Opcodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/Opcodes.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/Operand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/Operand.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/distorm/src/diStorm3/distorm3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/distorm/src/diStorm3/distorm3.java -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/jdistorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/jdistorm.c -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/jdistorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/jdistorm.h -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/jdistorm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/jdistorm.sln -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/java/jdistorm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/java/jdistorm.vcproj -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/linux/Makefile -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/linux/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/linux/main.c -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/tests/Makefile -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/tests/main.cpp -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/tests/main.py -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/tests/test_distorm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/tests/test_distorm3.py -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/tests/tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/tests/tests.sln -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/tests/tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/tests/tests.vcxproj -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/tests/tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/tests/tests.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/win32/disasm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/win32/disasm.sln -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/win32/disasm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/win32/disasm.vcxproj -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/win32/disasm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/win32/disasm.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/distorm3/examples/win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/examples/win32/main.cpp -------------------------------------------------------------------------------- /3rdparty/distorm3/include/distorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/include/distorm.h -------------------------------------------------------------------------------- /3rdparty/distorm3/include/mnemonics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/include/mnemonics.h -------------------------------------------------------------------------------- /3rdparty/distorm3/libdistorm3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/libdistorm3.a -------------------------------------------------------------------------------- /3rdparty/distorm3/make/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/make/linux/Makefile -------------------------------------------------------------------------------- /3rdparty/distorm3/make/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/make/mac/Makefile -------------------------------------------------------------------------------- /3rdparty/distorm3/make/win32/cdistorm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/make/win32/cdistorm.vcxproj -------------------------------------------------------------------------------- /3rdparty/distorm3/make/win32/cdistorm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/make/win32/cdistorm.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/distorm3/make/win32/distorm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/make/win32/distorm.sln -------------------------------------------------------------------------------- /3rdparty/distorm3/make/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/make/win32/resource.h -------------------------------------------------------------------------------- /3rdparty/distorm3/make/win32/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/make/win32/resource.rc -------------------------------------------------------------------------------- /3rdparty/distorm3/python/distorm3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/python/distorm3/__init__.py -------------------------------------------------------------------------------- /3rdparty/distorm3/python/distorm3/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/python/distorm3/sample.py -------------------------------------------------------------------------------- /3rdparty/distorm3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/setup.py -------------------------------------------------------------------------------- /3rdparty/distorm3/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/config.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/decoder.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/decoder.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/distorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/distorm.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/instructions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/instructions.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/instructions.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/insts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/insts.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/insts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/insts.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/mnemonics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/mnemonics.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/operands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/operands.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/operands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/operands.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/prefix.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/prefix.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/textdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/textdefs.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/textdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/textdefs.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/wstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/wstring.c -------------------------------------------------------------------------------- /3rdparty/distorm3/src/wstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/wstring.h -------------------------------------------------------------------------------- /3rdparty/distorm3/src/x86defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/distorm3/src/x86defs.h -------------------------------------------------------------------------------- /3rdparty/framedisplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/Makefile -------------------------------------------------------------------------------- /3rdparty/framedisplay/clone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/clone.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/clone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/clone.h -------------------------------------------------------------------------------- /3rdparty/framedisplay/framedisplay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/framedisplay.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/framedisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/framedisplay.h -------------------------------------------------------------------------------- /3rdparty/framedisplay/mbaacc_cg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/mbaacc_cg.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/mbaacc_character.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/mbaacc_character.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/mbaacc_framedata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/mbaacc_framedata.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/mbaacc_framedisplay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/mbaacc_framedisplay.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/mbaacc_framedisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/mbaacc_framedisplay.h -------------------------------------------------------------------------------- /3rdparty/framedisplay/mbaacc_pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/mbaacc_pack.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/mbaacc_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/mbaacc_pack.h -------------------------------------------------------------------------------- /3rdparty/framedisplay/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/misc.h -------------------------------------------------------------------------------- /3rdparty/framedisplay/render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/render.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/render.h -------------------------------------------------------------------------------- /3rdparty/framedisplay/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/test.cpp -------------------------------------------------------------------------------- /3rdparty/framedisplay/texture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/texture.cc -------------------------------------------------------------------------------- /3rdparty/framedisplay/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/framedisplay/texture.h -------------------------------------------------------------------------------- /3rdparty/freeglut/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/freeglut/freeglut.h -------------------------------------------------------------------------------- /3rdparty/freeglut/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/freeglut/freeglut_ext.h -------------------------------------------------------------------------------- /3rdparty/freeglut/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/freeglut/freeglut_std.h -------------------------------------------------------------------------------- /3rdparty/freeglut/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/freeglut/glut.h -------------------------------------------------------------------------------- /3rdparty/freeglut/libglut.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/freeglut/libglut.a -------------------------------------------------------------------------------- /3rdparty/glfw/GLFWReference27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/glfw/GLFWReference27.pdf -------------------------------------------------------------------------------- /3rdparty/glfw/glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/glfw/glfw.h -------------------------------------------------------------------------------- /3rdparty/glfw/libglfw.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/glfw/libglfw.a -------------------------------------------------------------------------------- /3rdparty/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/CHANGES -------------------------------------------------------------------------------- /3rdparty/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/LICENSE -------------------------------------------------------------------------------- /3rdparty/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/Makefile.am -------------------------------------------------------------------------------- /3rdparty/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/Makefile.in -------------------------------------------------------------------------------- /3rdparty/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/README -------------------------------------------------------------------------------- /3rdparty/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/build-aux/config.guess -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/build-aux/config.h.in -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/build-aux/config.sub -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/build-aux/depcomp -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/build-aux/install-sh -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/build-aux/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/gtest/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/build-aux/missing -------------------------------------------------------------------------------- /3rdparty/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /3rdparty/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/configure -------------------------------------------------------------------------------- /3rdparty/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/configure.ac -------------------------------------------------------------------------------- /3rdparty/gtest/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/gtest/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/gtest/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /3rdparty/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /3rdparty/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/m4/libtool.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/m4/ltoptions.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/m4/ltsugar.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/m4/ltversion.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rdparty/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/make/Makefile -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /3rdparty/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample1.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample2.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample4.h -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/scripts/pump.py -------------------------------------------------------------------------------- /3rdparty/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /3rdparty/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/production.cc -------------------------------------------------------------------------------- /3rdparty/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/test/production.h -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /3rdparty/gtest/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/gtest/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rdparty/libpng/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/libpng/libpng.a -------------------------------------------------------------------------------- /3rdparty/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/libpng/png.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/libpng/pngconf.h -------------------------------------------------------------------------------- /3rdparty/libz/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/libz/libz.a -------------------------------------------------------------------------------- /3rdparty/libz/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/libz/zconf.h -------------------------------------------------------------------------------- /3rdparty/libz/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/libz/zlib.h -------------------------------------------------------------------------------- /3rdparty/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/md5.c -------------------------------------------------------------------------------- /3rdparty/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/md5.h -------------------------------------------------------------------------------- /3rdparty/minhook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/.gitignore -------------------------------------------------------------------------------- /3rdparty/minhook/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/COPYING.txt -------------------------------------------------------------------------------- /3rdparty/minhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/README.md -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC10/MinHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC10/MinHook.vcxproj -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC10/MinHookVC10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC10/MinHookVC10.sln -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC10/libMinHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC10/libMinHook.vcxproj -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC10/libMinHook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC10/libMinHook.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC11/MinHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC11/MinHook.vcxproj -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC11/MinHookVC11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC11/MinHookVC11.sln -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC11/libMinHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC11/libMinHook.vcxproj -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC11/libMinHook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC11/libMinHook.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC12/MinHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC12/MinHook.vcxproj -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC12/MinHookVC12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC12/MinHookVC12.sln -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC12/libMinHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC12/libMinHook.vcxproj -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC12/libMinHook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC12/libMinHook.vcxproj.filters -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC9/MinHook.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC9/MinHook.vcproj -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC9/MinHookVC9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC9/MinHookVC9.sln -------------------------------------------------------------------------------- /3rdparty/minhook/build/VC9/libMinHook.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/build/VC9/libMinHook.vcproj -------------------------------------------------------------------------------- /3rdparty/minhook/dll_resources/MinHook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/dll_resources/MinHook.def -------------------------------------------------------------------------------- /3rdparty/minhook/dll_resources/MinHook.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/dll_resources/MinHook.rc -------------------------------------------------------------------------------- /3rdparty/minhook/dll_resources/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/dll_resources/dllmain.cpp -------------------------------------------------------------------------------- /3rdparty/minhook/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/include/MinHook.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/buffer.cc -------------------------------------------------------------------------------- /3rdparty/minhook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/buffer.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/export.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/export.cc -------------------------------------------------------------------------------- /3rdparty/minhook/src/hde32/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hde32/hde32.c -------------------------------------------------------------------------------- /3rdparty/minhook/src/hde32/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hde32/hde32.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/hde32/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hde32/table32.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/hde64/include/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hde64/include/hde64.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/hde64/src/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hde64/src/hde64.c -------------------------------------------------------------------------------- /3rdparty/minhook/src/hde64/src/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hde64/src/table64.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hook.cc -------------------------------------------------------------------------------- /3rdparty/minhook/src/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/hook.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/pstdint.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/thread.cc -------------------------------------------------------------------------------- /3rdparty/minhook/src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/thread.h -------------------------------------------------------------------------------- /3rdparty/minhook/src/trampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/trampoline.cc -------------------------------------------------------------------------------- /3rdparty/minhook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/minhook/src/trampoline.h -------------------------------------------------------------------------------- /3rdparty/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/miniz.c -------------------------------------------------------------------------------- /3rdparty/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/miniz.h -------------------------------------------------------------------------------- /3rdparty/optionparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/optionparser.h -------------------------------------------------------------------------------- /3rdparty/unzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/3rdparty/unzip.exe -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /MBAA.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/MBAA.CT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/README.md -------------------------------------------------------------------------------- /gdb_dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/gdb_dll.txt -------------------------------------------------------------------------------- /gdb_main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/gdb_main.txt -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Algorithms.hpp -------------------------------------------------------------------------------- /lib/BlockingQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/BlockingQueue.hpp -------------------------------------------------------------------------------- /lib/ChangeMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ChangeMonitor.cpp -------------------------------------------------------------------------------- /lib/ChangeMonitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ChangeMonitor.hpp -------------------------------------------------------------------------------- /lib/Compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Compression.cpp -------------------------------------------------------------------------------- /lib/Compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Compression.hpp -------------------------------------------------------------------------------- /lib/ConsoleUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ConsoleUi.cpp -------------------------------------------------------------------------------- /lib/ConsoleUi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ConsoleUi.hpp -------------------------------------------------------------------------------- /lib/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Controller.cpp -------------------------------------------------------------------------------- /lib/Controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Controller.hpp -------------------------------------------------------------------------------- /lib/ControllerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ControllerManager.cpp -------------------------------------------------------------------------------- /lib/ControllerManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ControllerManager.hpp -------------------------------------------------------------------------------- /lib/Enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Enum.hpp -------------------------------------------------------------------------------- /lib/ErrorStrings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ErrorStrings.hpp -------------------------------------------------------------------------------- /lib/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/EventManager.cpp -------------------------------------------------------------------------------- /lib/EventManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/EventManager.hpp -------------------------------------------------------------------------------- /lib/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Exceptions.cpp -------------------------------------------------------------------------------- /lib/Exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Exceptions.hpp -------------------------------------------------------------------------------- /lib/ExternalIpAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ExternalIpAddress.cpp -------------------------------------------------------------------------------- /lib/ExternalIpAddress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ExternalIpAddress.hpp -------------------------------------------------------------------------------- /lib/GoBackN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/GoBackN.cpp -------------------------------------------------------------------------------- /lib/GoBackN.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/GoBackN.hpp -------------------------------------------------------------------------------- /lib/Guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Guid.cpp -------------------------------------------------------------------------------- /lib/Guid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Guid.hpp -------------------------------------------------------------------------------- /lib/HttpDownload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/HttpDownload.cpp -------------------------------------------------------------------------------- /lib/HttpDownload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/HttpDownload.hpp -------------------------------------------------------------------------------- /lib/HttpGet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/HttpGet.cpp -------------------------------------------------------------------------------- /lib/HttpGet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/HttpGet.hpp -------------------------------------------------------------------------------- /lib/IpAddrPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/IpAddrPort.cpp -------------------------------------------------------------------------------- /lib/IpAddrPort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/IpAddrPort.hpp -------------------------------------------------------------------------------- /lib/JoystickDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/JoystickDetector.cpp -------------------------------------------------------------------------------- /lib/JoystickDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/JoystickDetector.hpp -------------------------------------------------------------------------------- /lib/KeyValueStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/KeyValueStore.cpp -------------------------------------------------------------------------------- /lib/KeyValueStore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/KeyValueStore.hpp -------------------------------------------------------------------------------- /lib/KeyboardManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/KeyboardManager.cpp -------------------------------------------------------------------------------- /lib/KeyboardManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/KeyboardManager.hpp -------------------------------------------------------------------------------- /lib/KeyboardState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/KeyboardState.cpp -------------------------------------------------------------------------------- /lib/KeyboardState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/KeyboardState.hpp -------------------------------------------------------------------------------- /lib/KeyboardVKeyNames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/KeyboardVKeyNames.hpp -------------------------------------------------------------------------------- /lib/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Logger.cpp -------------------------------------------------------------------------------- /lib/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Logger.hpp -------------------------------------------------------------------------------- /lib/LoggerLogVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/LoggerLogVersion.cpp -------------------------------------------------------------------------------- /lib/MemDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/MemDump.cpp -------------------------------------------------------------------------------- /lib/MemDump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/MemDump.hpp -------------------------------------------------------------------------------- /lib/MingwSecureApiTrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/MingwSecureApiTrap.cpp -------------------------------------------------------------------------------- /lib/MouseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/MouseManager.cpp -------------------------------------------------------------------------------- /lib/MouseManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/MouseManager.hpp -------------------------------------------------------------------------------- /lib/Pinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Pinger.cpp -------------------------------------------------------------------------------- /lib/Pinger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Pinger.hpp -------------------------------------------------------------------------------- /lib/Protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Protocol.cpp -------------------------------------------------------------------------------- /lib/Protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Protocol.hpp -------------------------------------------------------------------------------- /lib/ProtocolEnums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/ProtocolEnums.hpp -------------------------------------------------------------------------------- /lib/RollingAverage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/RollingAverage.hpp -------------------------------------------------------------------------------- /lib/SmartSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/SmartSocket.cpp -------------------------------------------------------------------------------- /lib/SmartSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/SmartSocket.hpp -------------------------------------------------------------------------------- /lib/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Socket.cpp -------------------------------------------------------------------------------- /lib/Socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Socket.hpp -------------------------------------------------------------------------------- /lib/SocketManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/SocketManager.cpp -------------------------------------------------------------------------------- /lib/SocketManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/SocketManager.hpp -------------------------------------------------------------------------------- /lib/Statistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Statistics.hpp -------------------------------------------------------------------------------- /lib/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/StringUtils.cpp -------------------------------------------------------------------------------- /lib/StringUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/StringUtils.hpp -------------------------------------------------------------------------------- /lib/TcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/TcpSocket.cpp -------------------------------------------------------------------------------- /lib/TcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/TcpSocket.hpp -------------------------------------------------------------------------------- /lib/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Thread.cpp -------------------------------------------------------------------------------- /lib/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Thread.hpp -------------------------------------------------------------------------------- /lib/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Timer.cpp -------------------------------------------------------------------------------- /lib/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Timer.hpp -------------------------------------------------------------------------------- /lib/TimerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/TimerManager.cpp -------------------------------------------------------------------------------- /lib/TimerManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/TimerManager.hpp -------------------------------------------------------------------------------- /lib/UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/UdpSocket.cpp -------------------------------------------------------------------------------- /lib/UdpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/UdpSocket.hpp -------------------------------------------------------------------------------- /lib/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Version.cpp -------------------------------------------------------------------------------- /lib/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/lib/Version.hpp -------------------------------------------------------------------------------- /netplay/CharacterSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/CharacterSelect.cpp -------------------------------------------------------------------------------- /netplay/CharacterSelect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/CharacterSelect.hpp -------------------------------------------------------------------------------- /netplay/Constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/Constants.hpp -------------------------------------------------------------------------------- /netplay/ErrorStringsExt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/ErrorStringsExt.hpp -------------------------------------------------------------------------------- /netplay/InputsContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/InputsContainer.hpp -------------------------------------------------------------------------------- /netplay/Messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/Messages.hpp -------------------------------------------------------------------------------- /netplay/NetplayStates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/NetplayStates.hpp -------------------------------------------------------------------------------- /netplay/Options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/Options.hpp -------------------------------------------------------------------------------- /netplay/PaletteManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/PaletteManager.cpp -------------------------------------------------------------------------------- /netplay/PaletteManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/PaletteManager.hpp -------------------------------------------------------------------------------- /netplay/ProcessManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/ProcessManager.cpp -------------------------------------------------------------------------------- /netplay/ProcessManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/ProcessManager.hpp -------------------------------------------------------------------------------- /netplay/ReplayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/ReplayManager.cpp -------------------------------------------------------------------------------- /netplay/ReplayManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/ReplayManager.hpp -------------------------------------------------------------------------------- /netplay/SpectatorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/SpectatorManager.cpp -------------------------------------------------------------------------------- /netplay/SpectatorManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/netplay/SpectatorManager.hpp -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/notes.txt -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_en/chr_stsel_en55.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_en/chr_stsel_en55.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_en/chr_stsel_en57.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_en/chr_stsel_en57.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_en/chr_stsel_en58.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_en/chr_stsel_en58.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_jp/chr_stsel_jp55.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_jp/chr_stsel_jp55.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_jp/chr_stsel_jp57.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_jp/chr_stsel_jp57.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_jp/chr_stsel_jp58.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_jp/chr_stsel_jp58.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_view/chr_stsel_view55.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_view/chr_stsel_view55.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_view/chr_stsel_view57.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_view/chr_stsel_view57.dds -------------------------------------------------------------------------------- /res/GRP/BgSelect/stsel_view/chr_stsel_view58.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/GRP/BgSelect/stsel_view/chr_stsel_view58.dds -------------------------------------------------------------------------------- /res/color_wheel_src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/color_wheel_src.png -------------------------------------------------------------------------------- /res/gray_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/gray_slider.png -------------------------------------------------------------------------------- /res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/icon.ico -------------------------------------------------------------------------------- /res/icon.rc: -------------------------------------------------------------------------------- 1 | ID_APP ICON "icon.ico" -------------------------------------------------------------------------------- /res/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/icon1.png -------------------------------------------------------------------------------- /res/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/icon2.png -------------------------------------------------------------------------------- /res/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/icon3.png -------------------------------------------------------------------------------- /res/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/icon4.png -------------------------------------------------------------------------------- /res/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/icon5.png -------------------------------------------------------------------------------- /res/palettes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/palettes.ico -------------------------------------------------------------------------------- /res/palettes.rc: -------------------------------------------------------------------------------- 1 | ID_APP ICON "palettes.ico" -------------------------------------------------------------------------------- /res/wheel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/wheel_dark.png -------------------------------------------------------------------------------- /res/wheel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/res/wheel_light.png -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | install 2 | -------------------------------------------------------------------------------- /scripts/3waydiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/3waydiff.py -------------------------------------------------------------------------------- /scripts/Add_Handler_Protocol.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/Add_Handler_Protocol.bat -------------------------------------------------------------------------------- /scripts/attach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/attach -------------------------------------------------------------------------------- /scripts/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/debug -------------------------------------------------------------------------------- /scripts/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/diff.py -------------------------------------------------------------------------------- /scripts/make_depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/make_depend -------------------------------------------------------------------------------- /scripts/make_protocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/make_protocol -------------------------------------------------------------------------------- /scripts/make_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/make_release -------------------------------------------------------------------------------- /scripts/make_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/make_version -------------------------------------------------------------------------------- /scripts/memsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/memsearch -------------------------------------------------------------------------------- /scripts/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/monitor -------------------------------------------------------------------------------- /scripts/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/profile -------------------------------------------------------------------------------- /scripts/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/rand.py -------------------------------------------------------------------------------- /scripts/rununtildesync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/rununtildesync -------------------------------------------------------------------------------- /scripts/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/server.py -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/sync2replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/sync2replay -------------------------------------------------------------------------------- /scripts/synctest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/synctest -------------------------------------------------------------------------------- /scripts/upload_latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/scripts/upload_latest -------------------------------------------------------------------------------- /targets/DllAsmHacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllAsmHacks.cpp -------------------------------------------------------------------------------- /targets/DllAsmHacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllAsmHacks.hpp -------------------------------------------------------------------------------- /targets/DllControllerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllControllerManager.cpp -------------------------------------------------------------------------------- /targets/DllControllerManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllControllerManager.hpp -------------------------------------------------------------------------------- /targets/DllControllerUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllControllerUtils.hpp -------------------------------------------------------------------------------- /targets/DllFrameRate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllFrameRate.cpp -------------------------------------------------------------------------------- /targets/DllFrameRate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllFrameRate.hpp -------------------------------------------------------------------------------- /targets/DllHacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllHacks.cpp -------------------------------------------------------------------------------- /targets/DllHacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllHacks.hpp -------------------------------------------------------------------------------- /targets/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllMain.cpp -------------------------------------------------------------------------------- /targets/DllNetplayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllNetplayManager.cpp -------------------------------------------------------------------------------- /targets/DllNetplayManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllNetplayManager.hpp -------------------------------------------------------------------------------- /targets/DllOverlayPrimitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllOverlayPrimitives.hpp -------------------------------------------------------------------------------- /targets/DllOverlayUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllOverlayUi.cpp -------------------------------------------------------------------------------- /targets/DllOverlayUi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllOverlayUi.hpp -------------------------------------------------------------------------------- /targets/DllOverlayUiText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllOverlayUiText.cpp -------------------------------------------------------------------------------- /targets/DllPaletteManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllPaletteManager.cpp -------------------------------------------------------------------------------- /targets/DllProcessManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllProcessManager.cpp -------------------------------------------------------------------------------- /targets/DllRollbackManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllRollbackManager.cpp -------------------------------------------------------------------------------- /targets/DllRollbackManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllRollbackManager.hpp -------------------------------------------------------------------------------- /targets/DllSpectatorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/DllSpectatorManager.cpp -------------------------------------------------------------------------------- /targets/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/Main.cpp -------------------------------------------------------------------------------- /targets/Main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/Main.hpp -------------------------------------------------------------------------------- /targets/MainApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/MainApp.cpp -------------------------------------------------------------------------------- /targets/MainUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/MainUi.cpp -------------------------------------------------------------------------------- /targets/MainUi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/MainUi.hpp -------------------------------------------------------------------------------- /targets/MainUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/MainUpdater.cpp -------------------------------------------------------------------------------- /targets/MainUpdater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/targets/MainUpdater.hpp -------------------------------------------------------------------------------- /tests/Test.GoBackN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tests/Test.GoBackN.cpp -------------------------------------------------------------------------------- /tests/Test.Socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tests/Test.Socket.hpp -------------------------------------------------------------------------------- /tests/Test.TcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tests/Test.TcpSocket.cpp -------------------------------------------------------------------------------- /tests/Test.Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tests/Test.Timer.cpp -------------------------------------------------------------------------------- /tests/Test.UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tests/Test.UdpSocket.cpp -------------------------------------------------------------------------------- /tests/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tests/Test.cpp -------------------------------------------------------------------------------- /tests/Test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tests/Test.hpp -------------------------------------------------------------------------------- /tools/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tools/Debugger.cpp -------------------------------------------------------------------------------- /tools/Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tools/Generator.cpp -------------------------------------------------------------------------------- /tools/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tools/Launcher.cpp -------------------------------------------------------------------------------- /tools/PaletteEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tools/PaletteEditor.cpp -------------------------------------------------------------------------------- /tools/PaletteEditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tools/PaletteEditor.hpp -------------------------------------------------------------------------------- /tools/Palettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tools/Palettes.cpp -------------------------------------------------------------------------------- /tools/Updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotMadscientist/CCCaster/HEAD/tools/Updater.cpp --------------------------------------------------------------------------------