├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── assets └── readme_header.jpg ├── deps └── premake │ ├── asmjit.lua │ ├── libtomcrypt.lua │ ├── libtommath.lua │ ├── minhook.lua │ ├── minizip.lua │ ├── picoproto.lua │ ├── rapidcsv.lua │ ├── rapidjson.lua │ ├── stb.lua │ ├── winreg.lua │ ├── xxhash.lua │ └── zlib.lua ├── generate.bat ├── premake5.lua ├── source ├── proxy-dll │ ├── component │ │ ├── arxan.cpp │ │ ├── blackbox.cpp │ │ ├── command.cpp │ │ ├── command.hpp │ │ ├── console.cpp │ │ ├── console.hpp │ │ ├── debugging.cpp │ │ ├── debugging.hpp │ │ ├── demonware.cpp │ │ ├── dvars.cpp │ │ ├── dvars.hpp │ │ ├── game_console.cpp │ │ ├── game_console.hpp │ │ ├── gsc_custom.cpp │ │ ├── gsc_custom.hpp │ │ ├── gsc_funcs.cpp │ │ ├── gsc_funcs.hpp │ │ ├── hashes.cpp │ │ ├── hashes.hpp │ │ ├── keycatchers.cpp │ │ ├── keycatchers.hpp │ │ ├── logger.cpp │ │ ├── logger.hpp │ │ ├── lua.cpp │ │ ├── mods.cpp │ │ ├── platform.cpp │ │ ├── platform.hpp │ │ ├── plugins.cpp │ │ ├── scheduler.cpp │ │ ├── scheduler.hpp │ │ ├── splash.cpp │ │ ├── splash.hpp │ │ ├── unlockall.cpp │ │ └── watermark.cpp │ ├── definitions │ │ ├── game.cpp │ │ ├── game.hpp │ │ ├── keys.cpp │ │ ├── keys.hpp │ │ ├── network.cpp │ │ ├── network.hpp │ │ ├── scripting.cpp │ │ ├── scripting.hpp │ │ ├── variables.cpp │ │ ├── variables.hpp │ │ ├── xassets.cpp │ │ └── xassets.hpp │ ├── demonware │ │ ├── bit_buffer.cpp │ │ ├── bit_buffer.hpp │ │ ├── byte_buffer.cpp │ │ ├── byte_buffer.hpp │ │ ├── data_types.hpp │ │ ├── fileshare.cpp │ │ ├── fileshare.hpp │ │ ├── keys.cpp │ │ ├── keys.hpp │ │ ├── objects.cpp │ │ ├── objects.hpp │ │ ├── protobuf.cpp │ │ ├── protobuf.hpp │ │ ├── reply.cpp │ │ ├── reply.hpp │ │ ├── server_registry.hpp │ │ ├── servers │ │ │ ├── auth3_server.cpp │ │ │ ├── auth3_server.hpp │ │ │ ├── base_server.cpp │ │ │ ├── base_server.hpp │ │ │ ├── fileshare_server.cpp │ │ │ ├── fileshare_server.hpp │ │ │ ├── lobby_server.cpp │ │ │ ├── lobby_server.hpp │ │ │ ├── service_server.hpp │ │ │ ├── stun_server.cpp │ │ │ ├── stun_server.hpp │ │ │ ├── tcp_server.cpp │ │ │ ├── tcp_server.hpp │ │ │ ├── udp_server.cpp │ │ │ ├── udp_server.hpp │ │ │ ├── umbrella_server.cpp │ │ │ └── umbrella_server.hpp │ │ ├── service.hpp │ │ ├── services.hpp │ │ └── services │ │ │ ├── bdAnticheat.cpp │ │ │ ├── bdAnticheat.hpp │ │ │ ├── bdBandwidthTest.cpp │ │ │ ├── bdBandwidthTest.hpp │ │ │ ├── bdCounter.cpp │ │ │ ├── bdCounter.hpp │ │ │ ├── bdDML.cpp │ │ │ ├── bdDML.hpp │ │ │ ├── bdEventLog.cpp │ │ │ ├── bdEventLog.hpp │ │ │ ├── bdGroup.cpp │ │ │ ├── bdGroup.hpp │ │ │ ├── bdKeyArchive.cpp │ │ │ ├── bdKeyArchive.hpp │ │ │ ├── bdLootGeneration.cpp │ │ │ ├── bdLootGeneration.hpp │ │ │ ├── bdMarketingComms.cpp │ │ │ ├── bdMarketingComms.hpp │ │ │ ├── bdMarketplace.cpp │ │ │ ├── bdMarketplace.hpp │ │ │ ├── bdObjectStore.cpp │ │ │ ├── bdObjectStore.hpp │ │ │ ├── bdPooledStorage.cpp │ │ │ ├── bdPooledStorage.hpp │ │ │ ├── bdProfiles.cpp │ │ │ ├── bdProfiles.hpp │ │ │ ├── bdPublisherVariables.cpp │ │ │ ├── bdPublisherVariables.hpp │ │ │ ├── bdRichPresence.cpp │ │ │ ├── bdRichPresence.hpp │ │ │ ├── bdStats.cpp │ │ │ ├── bdStats.hpp │ │ │ ├── bdTags.cpp │ │ │ ├── bdTags.hpp │ │ │ ├── bdTitleUtilities.cpp │ │ │ ├── bdTitleUtilities.hpp │ │ │ ├── bdUNK125.cpp │ │ │ └── bdUNK125.hpp │ ├── loader │ │ ├── component_interface.hpp │ │ ├── component_loader.cpp │ │ └── component_loader.hpp │ ├── main.cpp │ ├── resource.hpp │ ├── resource.rc │ ├── resources │ │ ├── dw │ │ │ ├── auth_traffic_signing_key.dat │ │ │ └── publisher_objects_list.csv │ │ ├── icon.ico │ │ └── splash.jpg │ ├── spoofer │ │ ├── spoofcall.cpp │ │ └── spoofcall.hpp │ ├── std_include.cpp │ └── std_include.hpp └── shared-code │ ├── exception │ ├── minidump.cpp │ └── minidump.hpp │ └── utilities │ ├── binary_resource.cpp │ ├── binary_resource.hpp │ ├── com.cpp │ ├── com.hpp │ ├── compression.cpp │ ├── compression.hpp │ ├── concurrency.hpp │ ├── cryptography.cpp │ ├── cryptography.hpp │ ├── finally.hpp │ ├── flags.cpp │ ├── flags.hpp │ ├── hardware_breakpoint.cpp │ ├── hardware_breakpoint.hpp │ ├── hook.cpp │ ├── hook.hpp │ ├── http.cpp │ ├── http.hpp │ ├── identity.cpp │ ├── identity.hpp │ ├── image.cpp │ ├── image.hpp │ ├── info_string.cpp │ ├── info_string.hpp │ ├── io.cpp │ ├── io.hpp │ ├── json_config.cpp │ ├── json_config.hpp │ ├── memory.cpp │ ├── memory.hpp │ ├── nt.cpp │ ├── nt.hpp │ ├── progress_ui.cpp │ ├── progress_ui.hpp │ ├── signature.cpp │ ├── signature.hpp │ ├── string.cpp │ ├── string.hpp │ ├── thread.cpp │ └── thread.hpp └── tools └── premake5.exe /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | .vscode 3 | build/ 4 | usergenerate.bat -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/README.md -------------------------------------------------------------------------------- /assets/readme_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/assets/readme_header.jpg -------------------------------------------------------------------------------- /deps/premake/asmjit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/asmjit.lua -------------------------------------------------------------------------------- /deps/premake/libtomcrypt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/libtomcrypt.lua -------------------------------------------------------------------------------- /deps/premake/libtommath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/libtommath.lua -------------------------------------------------------------------------------- /deps/premake/minhook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/minhook.lua -------------------------------------------------------------------------------- /deps/premake/minizip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/minizip.lua -------------------------------------------------------------------------------- /deps/premake/picoproto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/picoproto.lua -------------------------------------------------------------------------------- /deps/premake/rapidcsv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/rapidcsv.lua -------------------------------------------------------------------------------- /deps/premake/rapidjson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/rapidjson.lua -------------------------------------------------------------------------------- /deps/premake/stb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/stb.lua -------------------------------------------------------------------------------- /deps/premake/winreg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/winreg.lua -------------------------------------------------------------------------------- /deps/premake/xxhash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/xxhash.lua -------------------------------------------------------------------------------- /deps/premake/zlib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/deps/premake/zlib.lua -------------------------------------------------------------------------------- /generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/generate.bat -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/premake5.lua -------------------------------------------------------------------------------- /source/proxy-dll/component/arxan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/arxan.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/blackbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/blackbox.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/command.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/command.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/console.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/console.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/debugging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/debugging.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/debugging.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /source/proxy-dll/component/demonware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/demonware.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/dvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/dvars.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/dvars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/dvars.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/game_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/game_console.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/game_console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/game_console.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/gsc_custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/gsc_custom.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/gsc_custom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/gsc_custom.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/gsc_funcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/gsc_funcs.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/gsc_funcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/gsc_funcs.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/hashes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/hashes.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/hashes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/hashes.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/keycatchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/keycatchers.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/keycatchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/keycatchers.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/logger.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/logger.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/lua.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/mods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/mods.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/platform.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/platform.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/plugins.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/scheduler.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/scheduler.hpp -------------------------------------------------------------------------------- /source/proxy-dll/component/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/splash.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/splash.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace splash 4 | { 5 | void hide(); 6 | HWND get_window(); 7 | } 8 | -------------------------------------------------------------------------------- /source/proxy-dll/component/unlockall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/unlockall.cpp -------------------------------------------------------------------------------- /source/proxy-dll/component/watermark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/component/watermark.cpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/game.cpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/game.hpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/keys.cpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/keys.hpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/network.cpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/network.hpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/scripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/scripting.cpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/scripting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/scripting.hpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/variables.cpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/variables.hpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/xassets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/xassets.cpp -------------------------------------------------------------------------------- /source/proxy-dll/definitions/xassets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/definitions/xassets.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/bit_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/bit_buffer.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/bit_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/bit_buffer.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/byte_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/byte_buffer.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/byte_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/byte_buffer.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/data_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/data_types.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/fileshare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/fileshare.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/fileshare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/fileshare.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/keys.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/keys.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/objects.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/objects.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/protobuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/protobuf.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/protobuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/protobuf.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/reply.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/reply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/reply.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/server_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/server_registry.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/auth3_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/auth3_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/auth3_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/auth3_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/base_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/base_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/base_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/base_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/fileshare_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/fileshare_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/fileshare_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/fileshare_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/lobby_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/lobby_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/lobby_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/lobby_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/service_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/service_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/stun_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/stun_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/stun_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/stun_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/tcp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/tcp_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/tcp_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/tcp_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/udp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/udp_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/udp_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/udp_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/umbrella_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/umbrella_server.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/servers/umbrella_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/servers/umbrella_server.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/service.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdAnticheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdAnticheat.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdAnticheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdAnticheat.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdBandwidthTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdBandwidthTest.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdBandwidthTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdBandwidthTest.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdCounter.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdCounter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdCounter.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdDML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdDML.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdDML.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdDML.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdEventLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdEventLog.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdEventLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdEventLog.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdGroup.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdGroup.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdKeyArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdKeyArchive.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdKeyArchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdKeyArchive.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdLootGeneration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdLootGeneration.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdLootGeneration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdLootGeneration.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdMarketingComms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdMarketingComms.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdMarketingComms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdMarketingComms.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdMarketplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdMarketplace.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdMarketplace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdMarketplace.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdObjectStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdObjectStore.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdObjectStore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdObjectStore.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdPooledStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdPooledStorage.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdPooledStorage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdPooledStorage.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdProfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdProfiles.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdProfiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdProfiles.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdPublisherVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdPublisherVariables.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdPublisherVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdPublisherVariables.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdRichPresence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdRichPresence.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdRichPresence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdRichPresence.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdStats.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdStats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdStats.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdTags.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdTags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdTags.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdTitleUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdTitleUtilities.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdTitleUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdTitleUtilities.hpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdUNK125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdUNK125.cpp -------------------------------------------------------------------------------- /source/proxy-dll/demonware/services/bdUNK125.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/demonware/services/bdUNK125.hpp -------------------------------------------------------------------------------- /source/proxy-dll/loader/component_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/loader/component_interface.hpp -------------------------------------------------------------------------------- /source/proxy-dll/loader/component_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/loader/component_loader.cpp -------------------------------------------------------------------------------- /source/proxy-dll/loader/component_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/loader/component_loader.hpp -------------------------------------------------------------------------------- /source/proxy-dll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/main.cpp -------------------------------------------------------------------------------- /source/proxy-dll/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/resource.hpp -------------------------------------------------------------------------------- /source/proxy-dll/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/resource.rc -------------------------------------------------------------------------------- /source/proxy-dll/resources/dw/auth_traffic_signing_key.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/resources/dw/auth_traffic_signing_key.dat -------------------------------------------------------------------------------- /source/proxy-dll/resources/dw/publisher_objects_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/resources/dw/publisher_objects_list.csv -------------------------------------------------------------------------------- /source/proxy-dll/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/resources/icon.ico -------------------------------------------------------------------------------- /source/proxy-dll/resources/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/resources/splash.jpg -------------------------------------------------------------------------------- /source/proxy-dll/spoofer/spoofcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/spoofer/spoofcall.cpp -------------------------------------------------------------------------------- /source/proxy-dll/spoofer/spoofcall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/spoofer/spoofcall.hpp -------------------------------------------------------------------------------- /source/proxy-dll/std_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/std_include.cpp -------------------------------------------------------------------------------- /source/proxy-dll/std_include.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/proxy-dll/std_include.hpp -------------------------------------------------------------------------------- /source/shared-code/exception/minidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/exception/minidump.cpp -------------------------------------------------------------------------------- /source/shared-code/exception/minidump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/exception/minidump.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/binary_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/binary_resource.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/binary_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/binary_resource.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/com.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/com.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/com.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/compression.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/compression.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/concurrency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/concurrency.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/cryptography.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/cryptography.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/cryptography.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/finally.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/finally.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/flags.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/flags.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/hardware_breakpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/hardware_breakpoint.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/hardware_breakpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/hardware_breakpoint.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/hook.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/hook.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/http.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/http.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/identity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/identity.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/identity.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/image.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/image.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/info_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/info_string.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/info_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/info_string.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/io.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/io.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/json_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/json_config.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/json_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/json_config.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/memory.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/memory.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/nt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/nt.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/nt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/nt.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/progress_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/progress_ui.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/progress_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/progress_ui.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/signature.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/signature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/signature.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/string.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/string.hpp -------------------------------------------------------------------------------- /source/shared-code/utilities/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/thread.cpp -------------------------------------------------------------------------------- /source/shared-code/utilities/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/source/shared-code/utilities/thread.hpp -------------------------------------------------------------------------------- /tools/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-bo4/shield-development/HEAD/tools/premake5.exe --------------------------------------------------------------------------------