├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── .travis.yml ├── AMBuildScript ├── Extension ├── AMBuilder ├── CDetour │ ├── detourhelpers.h │ ├── detours.cpp │ └── detours.h ├── Makefile ├── asm │ ├── asm.c │ └── asm.h ├── extension.cpp ├── extension.h ├── gcnatives.cpp ├── gcnatives.h ├── gsnatives.cpp ├── gsnatives.h ├── msvc10 │ ├── SteamWorks.sln │ ├── SteamWorks.vcxproj │ └── SteamWorks.vcxproj.filters ├── sdk │ ├── smsdk_config.h │ ├── smsdk_ext.cpp │ └── smsdk_ext.h ├── ssnatives.cpp ├── ssnatives.h ├── steamtools │ ├── blob.h │ └── ticket.h ├── swforwards.cpp ├── swforwards.h ├── swgamedata.cpp ├── swgamedata.h ├── swgameserver.cpp ├── swgameserver.h ├── swgchooks.cpp ├── swgchooks.h ├── swgsdetours.cpp ├── swgsdetours.h ├── swgshooks.cpp ├── swgshooks.h ├── swhttp.cpp ├── swhttp.h ├── swhttprequest.cpp ├── swhttprequest.h ├── swmemutils.cpp └── swmemutils.h ├── LICENSE ├── Pawn ├── UpdateCheck.sp ├── includes │ └── SteamWorks.inc └── swag.sp ├── README.md ├── configure.py └── pushbuild.txt /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/.travis.yml -------------------------------------------------------------------------------- /AMBuildScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/AMBuildScript -------------------------------------------------------------------------------- /Extension/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/AMBuilder -------------------------------------------------------------------------------- /Extension/CDetour/detourhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/CDetour/detourhelpers.h -------------------------------------------------------------------------------- /Extension/CDetour/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/CDetour/detours.cpp -------------------------------------------------------------------------------- /Extension/CDetour/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/CDetour/detours.h -------------------------------------------------------------------------------- /Extension/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/Makefile -------------------------------------------------------------------------------- /Extension/asm/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/asm/asm.c -------------------------------------------------------------------------------- /Extension/asm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/asm/asm.h -------------------------------------------------------------------------------- /Extension/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/extension.cpp -------------------------------------------------------------------------------- /Extension/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/extension.h -------------------------------------------------------------------------------- /Extension/gcnatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/gcnatives.cpp -------------------------------------------------------------------------------- /Extension/gcnatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/gcnatives.h -------------------------------------------------------------------------------- /Extension/gsnatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/gsnatives.cpp -------------------------------------------------------------------------------- /Extension/gsnatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/gsnatives.h -------------------------------------------------------------------------------- /Extension/msvc10/SteamWorks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/msvc10/SteamWorks.sln -------------------------------------------------------------------------------- /Extension/msvc10/SteamWorks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/msvc10/SteamWorks.vcxproj -------------------------------------------------------------------------------- /Extension/msvc10/SteamWorks.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/msvc10/SteamWorks.vcxproj.filters -------------------------------------------------------------------------------- /Extension/sdk/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/sdk/smsdk_config.h -------------------------------------------------------------------------------- /Extension/sdk/smsdk_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/sdk/smsdk_ext.cpp -------------------------------------------------------------------------------- /Extension/sdk/smsdk_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/sdk/smsdk_ext.h -------------------------------------------------------------------------------- /Extension/ssnatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/ssnatives.cpp -------------------------------------------------------------------------------- /Extension/ssnatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/ssnatives.h -------------------------------------------------------------------------------- /Extension/steamtools/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/steamtools/blob.h -------------------------------------------------------------------------------- /Extension/steamtools/ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/steamtools/ticket.h -------------------------------------------------------------------------------- /Extension/swforwards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swforwards.cpp -------------------------------------------------------------------------------- /Extension/swforwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swforwards.h -------------------------------------------------------------------------------- /Extension/swgamedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgamedata.cpp -------------------------------------------------------------------------------- /Extension/swgamedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgamedata.h -------------------------------------------------------------------------------- /Extension/swgameserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgameserver.cpp -------------------------------------------------------------------------------- /Extension/swgameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgameserver.h -------------------------------------------------------------------------------- /Extension/swgchooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgchooks.cpp -------------------------------------------------------------------------------- /Extension/swgchooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgchooks.h -------------------------------------------------------------------------------- /Extension/swgsdetours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgsdetours.cpp -------------------------------------------------------------------------------- /Extension/swgsdetours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgsdetours.h -------------------------------------------------------------------------------- /Extension/swgshooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgshooks.cpp -------------------------------------------------------------------------------- /Extension/swgshooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swgshooks.h -------------------------------------------------------------------------------- /Extension/swhttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swhttp.cpp -------------------------------------------------------------------------------- /Extension/swhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swhttp.h -------------------------------------------------------------------------------- /Extension/swhttprequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swhttprequest.cpp -------------------------------------------------------------------------------- /Extension/swhttprequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swhttprequest.h -------------------------------------------------------------------------------- /Extension/swmemutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swmemutils.cpp -------------------------------------------------------------------------------- /Extension/swmemutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Extension/swmemutils.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/LICENSE -------------------------------------------------------------------------------- /Pawn/UpdateCheck.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Pawn/UpdateCheck.sp -------------------------------------------------------------------------------- /Pawn/includes/SteamWorks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Pawn/includes/SteamWorks.inc -------------------------------------------------------------------------------- /Pawn/swag.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/Pawn/swag.sp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/README.md -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleSanderson/SteamWorks/HEAD/configure.py -------------------------------------------------------------------------------- /pushbuild.txt: -------------------------------------------------------------------------------- 1 | Jack just said "dammit" again 2 | --------------------------------------------------------------------------------