├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── compatibility-report.md │ ├── config.yml │ ├── feature-request.md │ ├── other.md │ └── whitelist-request.md ├── .gitignore ├── .gitmodules ├── LICENSE ├── LICENSE.proton ├── Makefile ├── Makefile.in ├── README.md ├── compatibilitytool.vdf.template ├── configure.sh ├── default_pfx.py ├── dist.LICENSE ├── docker ├── Makefile ├── README.md ├── binutils.Dockerfile.in ├── build-base.Dockerfile.in ├── context │ └── ninja-jobserver-client.patch ├── gcc.Dockerfile.in ├── mingw-crt.Dockerfile.in ├── mingw-gcc.Dockerfile.in ├── mingw-headers.Dockerfile.in ├── mingw-pthreads.Dockerfile.in ├── mingw-widl.Dockerfile.in └── proton.Dockerfile.in ├── docs ├── CONTROLLERS.md ├── ICMP_ECHO.md ├── PRIME.md ├── REBASING_TIPS.md └── THREAD_PRIORITY.md ├── filelock.py ├── fonts ├── noto │ ├── LICENSE │ ├── NotoSans-Regular.ttf │ ├── NotoSansArabic-Regular.ttf │ ├── NotoSansArmenian-Regular.ttf │ ├── NotoSansBengali-Regular.ttf │ ├── NotoSansBengaliUI-Regular.ttf │ ├── NotoSansChakma-Regular.ttf │ ├── NotoSansCoptic-Regular.ttf │ ├── NotoSansDevanagariUI-Regular.ttf │ ├── NotoSansGeorgian-Regular.ttf │ ├── NotoSansGujarati-Regular.ttf │ ├── NotoSansGujaratiUI-Regular.ttf │ ├── NotoSansGurmukhiUI-Regular.ttf │ ├── NotoSansHebrew-Regular.ttf │ ├── NotoSansKannadaUI-Regular.ttf │ ├── NotoSansKhmer-Regular.ttf │ ├── NotoSansMalayalamUI-Regular.ttf │ ├── NotoSansMath-Regular.ttf │ ├── NotoSansMeeteiMayek-Regular.ttf │ ├── NotoSansMono-Regular.ttf │ ├── NotoSansOlChiki-Regular.ttf │ ├── NotoSansOriyaUI-Regular.ttf │ ├── NotoSansSinhalaUI-Regular.ttf │ ├── NotoSansSoraSompeng-Regular.ttf │ ├── NotoSansSymbols-Regular.ttf │ ├── NotoSansSymbols2-Regular.ttf │ ├── NotoSansTamil-Regular.ttf │ ├── NotoSansTamilUI-Regular.ttf │ ├── NotoSansTeluguUI-Regular.ttf │ ├── NotoSansThaana-Regular.ttf │ ├── NotoSansThai-Regular.ttf │ └── NotoSerifTibetan-Regular.ttf ├── patches │ ├── LiberationMono-Regular.patch │ ├── Malgun-FontMenuNameDB │ ├── NSimSun-FontMenuNameDB │ ├── SimSun-FontMenuNameDB │ ├── UmeGothic-nametable.patch │ ├── UmePGothic-nametable.patch │ ├── UmeUIGothic-nametable.patch │ └── YaHei-FontMenuNameDB ├── ranges │ ├── arial │ ├── micross │ └── nirmala ├── scripts │ ├── generatefont.pe │ └── merge.py ├── source-han-sans │ ├── LICENSE.txt │ ├── SourceHanSans_CN_sequences.txt │ ├── SourceHanSans_KR_sequences.txt │ ├── UniSourceHanSansCN-UTF32-H │ ├── UniSourceHanSansKR-UTF32-H │ ├── cidfont.ps.OTC.K │ ├── cidfont.ps.OTC.SC │ ├── cidfontinfo.OTC.K │ ├── cidfontinfo.OTC.SC │ ├── features.OTC.K │ └── features.OTC.SC └── ume │ ├── PROTON_NOTE.md │ ├── license.html │ ├── ume-pgo4.ttf │ ├── ume-tgo4.ttf │ └── ume-ugo4.ttf ├── lsteamclient ├── LICENSE ├── cb_converters.dat ├── cb_converters.h ├── cb_getapi_sizes.dat ├── cb_getapi_table.dat ├── cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp ├── cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.h ├── cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp ├── cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.h ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp ├── cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.h ├── cppISteamClient_SteamClient006.cpp ├── cppISteamClient_SteamClient006.h ├── cppISteamClient_SteamClient007.cpp ├── cppISteamClient_SteamClient007.h ├── cppISteamClient_SteamClient008.cpp ├── cppISteamClient_SteamClient008.h ├── cppISteamClient_SteamClient009.cpp ├── cppISteamClient_SteamClient009.h ├── cppISteamClient_SteamClient010.cpp ├── cppISteamClient_SteamClient010.h ├── cppISteamClient_SteamClient011.cpp ├── cppISteamClient_SteamClient011.h ├── cppISteamClient_SteamClient012.cpp ├── cppISteamClient_SteamClient012.h ├── cppISteamClient_SteamClient013.cpp ├── cppISteamClient_SteamClient013.h ├── cppISteamClient_SteamClient014.cpp ├── cppISteamClient_SteamClient014.h ├── cppISteamClient_SteamClient015.cpp ├── cppISteamClient_SteamClient015.h ├── cppISteamClient_SteamClient016.cpp ├── cppISteamClient_SteamClient016.h ├── cppISteamClient_SteamClient017.cpp ├── cppISteamClient_SteamClient017.h ├── cppISteamClient_SteamClient018.cpp ├── cppISteamClient_SteamClient018.h ├── cppISteamClient_SteamClient019.cpp ├── cppISteamClient_SteamClient019.h ├── cppISteamClient_SteamClient020.cpp ├── cppISteamClient_SteamClient020.h ├── cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp ├── cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.h ├── cppISteamController_SteamController003.cpp ├── cppISteamController_SteamController003.h ├── cppISteamController_SteamController004.cpp ├── cppISteamController_SteamController004.h ├── cppISteamController_SteamController005.cpp ├── cppISteamController_SteamController005.h ├── cppISteamController_SteamController006.cpp ├── cppISteamController_SteamController006.h ├── cppISteamController_SteamController007.cpp ├── cppISteamController_SteamController007.h ├── cppISteamController_SteamController008.cpp ├── cppISteamController_SteamController008.h ├── cppISteamFriends_SteamFriends001.cpp ├── cppISteamFriends_SteamFriends001.h ├── cppISteamFriends_SteamFriends002.cpp ├── cppISteamFriends_SteamFriends002.h ├── cppISteamFriends_SteamFriends003.cpp ├── cppISteamFriends_SteamFriends003.h ├── cppISteamFriends_SteamFriends004.cpp ├── cppISteamFriends_SteamFriends004.h ├── cppISteamFriends_SteamFriends005.cpp ├── cppISteamFriends_SteamFriends005.h ├── cppISteamFriends_SteamFriends006.cpp ├── cppISteamFriends_SteamFriends006.h ├── cppISteamFriends_SteamFriends007.cpp ├── cppISteamFriends_SteamFriends007.h ├── cppISteamFriends_SteamFriends008.cpp ├── cppISteamFriends_SteamFriends008.h ├── cppISteamFriends_SteamFriends009.cpp ├── cppISteamFriends_SteamFriends009.h ├── cppISteamFriends_SteamFriends010.cpp ├── cppISteamFriends_SteamFriends010.h ├── cppISteamFriends_SteamFriends011.cpp ├── cppISteamFriends_SteamFriends011.h ├── cppISteamFriends_SteamFriends012.cpp ├── cppISteamFriends_SteamFriends012.h ├── cppISteamFriends_SteamFriends013.cpp ├── cppISteamFriends_SteamFriends013.h ├── cppISteamFriends_SteamFriends014.cpp ├── cppISteamFriends_SteamFriends014.h ├── cppISteamFriends_SteamFriends015.cpp ├── cppISteamFriends_SteamFriends015.h ├── cppISteamFriends_SteamFriends017.cpp ├── cppISteamFriends_SteamFriends017.h ├── cppISteamGameCoordinator_SteamGameCoordinator001.cpp ├── cppISteamGameCoordinator_SteamGameCoordinator001.h ├── cppISteamGameSearch_SteamMatchGameSearch001.cpp ├── cppISteamGameSearch_SteamMatchGameSearch001.h ├── cppISteamGameServerStats_SteamGameServerStats001.cpp ├── cppISteamGameServerStats_SteamGameServerStats001.h ├── cppISteamGameServer_SteamGameServer002.cpp ├── cppISteamGameServer_SteamGameServer002.h ├── cppISteamGameServer_SteamGameServer003.cpp ├── cppISteamGameServer_SteamGameServer003.h ├── cppISteamGameServer_SteamGameServer004.cpp ├── cppISteamGameServer_SteamGameServer004.h ├── cppISteamGameServer_SteamGameServer005.cpp ├── cppISteamGameServer_SteamGameServer005.h ├── cppISteamGameServer_SteamGameServer008.cpp ├── cppISteamGameServer_SteamGameServer008.h ├── cppISteamGameServer_SteamGameServer009.cpp ├── cppISteamGameServer_SteamGameServer009.h ├── cppISteamGameServer_SteamGameServer010.cpp ├── cppISteamGameServer_SteamGameServer010.h ├── cppISteamGameServer_SteamGameServer011.cpp ├── cppISteamGameServer_SteamGameServer011.h ├── cppISteamGameServer_SteamGameServer012.cpp ├── cppISteamGameServer_SteamGameServer012.h ├── cppISteamGameServer_SteamGameServer013.cpp ├── cppISteamGameServer_SteamGameServer013.h ├── cppISteamGameServer_SteamGameServer014.cpp ├── cppISteamGameServer_SteamGameServer014.h ├── cppISteamGameServer_SteamGameServer015.cpp ├── cppISteamGameServer_SteamGameServer015.h ├── cppISteamGameStats_SteamGameStats001.cpp ├── cppISteamGameStats_SteamGameStats001.h ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.h ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.h ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.h ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.h ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp ├── cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.h ├── cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp ├── cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.h ├── cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp ├── cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.h ├── cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp ├── cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.h ├── cppISteamInput_SteamInput001.cpp ├── cppISteamInput_SteamInput001.h ├── cppISteamInput_SteamInput002.cpp ├── cppISteamInput_SteamInput002.h ├── cppISteamInput_SteamInput005.cpp ├── cppISteamInput_SteamInput005.h ├── cppISteamInput_SteamInput006.cpp ├── cppISteamInput_SteamInput006.h ├── cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp ├── cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.h ├── cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp ├── cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.h ├── cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp ├── cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.h ├── cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp ├── cppISteamMasterServerUpdater_SteamMasterServerUpdater001.h ├── cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp ├── cppISteamMatchmakingServers_SteamMatchMakingServers001.h ├── cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp ├── cppISteamMatchmakingServers_SteamMatchMakingServers002.h ├── cppISteamMatchmaking_SteamMatchMaking001.cpp ├── cppISteamMatchmaking_SteamMatchMaking001.h ├── cppISteamMatchmaking_SteamMatchMaking002.cpp ├── cppISteamMatchmaking_SteamMatchMaking002.h ├── cppISteamMatchmaking_SteamMatchMaking003.cpp ├── cppISteamMatchmaking_SteamMatchMaking003.h ├── cppISteamMatchmaking_SteamMatchMaking004.cpp ├── cppISteamMatchmaking_SteamMatchMaking004.h ├── cppISteamMatchmaking_SteamMatchMaking005.cpp ├── cppISteamMatchmaking_SteamMatchMaking005.h ├── cppISteamMatchmaking_SteamMatchMaking006.cpp ├── cppISteamMatchmaking_SteamMatchMaking006.h ├── cppISteamMatchmaking_SteamMatchMaking007.cpp ├── cppISteamMatchmaking_SteamMatchMaking007.h ├── cppISteamMatchmaking_SteamMatchMaking008.cpp ├── cppISteamMatchmaking_SteamMatchMaking008.h ├── cppISteamMatchmaking_SteamMatchMaking009.cpp ├── cppISteamMatchmaking_SteamMatchMaking009.h ├── cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp ├── cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.h ├── cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp ├── cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.h ├── cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp ├── cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h ├── cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp ├── cppISteamNetworkingMessages_SteamNetworkingMessages002.h ├── cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp ├── cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.h ├── cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp ├── cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.h ├── cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp ├── cppISteamNetworkingSockets_SteamNetworkingSockets002.h ├── cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp ├── cppISteamNetworkingSockets_SteamNetworkingSockets004.h ├── cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp ├── cppISteamNetworkingSockets_SteamNetworkingSockets006.h ├── cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp ├── cppISteamNetworkingSockets_SteamNetworkingSockets008.h ├── cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp ├── cppISteamNetworkingSockets_SteamNetworkingSockets009.h ├── cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp ├── cppISteamNetworkingSockets_SteamNetworkingSockets012.h ├── cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp ├── cppISteamNetworkingUtils_SteamNetworkingUtils001.h ├── cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp ├── cppISteamNetworkingUtils_SteamNetworkingUtils002.h ├── cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp ├── cppISteamNetworkingUtils_SteamNetworkingUtils003.h ├── cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp ├── cppISteamNetworkingUtils_SteamNetworkingUtils004.h ├── cppISteamNetworking_SteamNetworking001.cpp ├── cppISteamNetworking_SteamNetworking001.h ├── cppISteamNetworking_SteamNetworking002.cpp ├── cppISteamNetworking_SteamNetworking002.h ├── cppISteamNetworking_SteamNetworking003.cpp ├── cppISteamNetworking_SteamNetworking003.h ├── cppISteamNetworking_SteamNetworking004.cpp ├── cppISteamNetworking_SteamNetworking004.h ├── cppISteamNetworking_SteamNetworking005.cpp ├── cppISteamNetworking_SteamNetworking005.h ├── cppISteamNetworking_SteamNetworking006.cpp ├── cppISteamNetworking_SteamNetworking006.h ├── cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp ├── cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h ├── cppISteamParties_SteamParties002.cpp ├── cppISteamParties_SteamParties002.h ├── cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp ├── cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.h ├── cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp ├── cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.h ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp ├── cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.h ├── cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp ├── cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.h ├── cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp ├── cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.h ├── cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp ├── cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.h ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp ├── cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.h ├── cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp ├── cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.h ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp ├── cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.h ├── cppISteamUser_SteamUser004.cpp ├── cppISteamUser_SteamUser004.h ├── cppISteamUser_SteamUser005.cpp ├── cppISteamUser_SteamUser005.h ├── cppISteamUser_SteamUser006.cpp ├── cppISteamUser_SteamUser006.h ├── cppISteamUser_SteamUser007.cpp ├── cppISteamUser_SteamUser007.h ├── cppISteamUser_SteamUser008.cpp ├── cppISteamUser_SteamUser008.h ├── cppISteamUser_SteamUser009.cpp ├── cppISteamUser_SteamUser009.h ├── cppISteamUser_SteamUser010.cpp ├── cppISteamUser_SteamUser010.h ├── cppISteamUser_SteamUser011.cpp ├── cppISteamUser_SteamUser011.h ├── cppISteamUser_SteamUser012.cpp ├── cppISteamUser_SteamUser012.h ├── cppISteamUser_SteamUser013.cpp ├── cppISteamUser_SteamUser013.h ├── cppISteamUser_SteamUser014.cpp ├── cppISteamUser_SteamUser014.h ├── cppISteamUser_SteamUser015.cpp ├── cppISteamUser_SteamUser015.h ├── cppISteamUser_SteamUser016.cpp ├── cppISteamUser_SteamUser016.h ├── cppISteamUser_SteamUser017.cpp ├── cppISteamUser_SteamUser017.h ├── cppISteamUser_SteamUser018.cpp ├── cppISteamUser_SteamUser018.h ├── cppISteamUser_SteamUser019.cpp ├── cppISteamUser_SteamUser019.h ├── cppISteamUser_SteamUser020.cpp ├── cppISteamUser_SteamUser020.h ├── cppISteamUser_SteamUser021.cpp ├── cppISteamUser_SteamUser021.h ├── cppISteamUser_SteamUser022.cpp ├── cppISteamUser_SteamUser022.h ├── cppISteamUser_SteamUser023.cpp ├── cppISteamUser_SteamUser023.h ├── cppISteamUtils_SteamUtils002.cpp ├── cppISteamUtils_SteamUtils002.h ├── cppISteamUtils_SteamUtils004.cpp ├── cppISteamUtils_SteamUtils004.h ├── cppISteamUtils_SteamUtils005.cpp ├── cppISteamUtils_SteamUtils005.h ├── cppISteamUtils_SteamUtils006.cpp ├── cppISteamUtils_SteamUtils006.h ├── cppISteamUtils_SteamUtils007.cpp ├── cppISteamUtils_SteamUtils007.h ├── cppISteamUtils_SteamUtils008.cpp ├── cppISteamUtils_SteamUtils008.h ├── cppISteamUtils_SteamUtils009.cpp ├── cppISteamUtils_SteamUtils009.h ├── cppISteamUtils_SteamUtils010.cpp ├── cppISteamUtils_SteamUtils010.h ├── cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp ├── cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h ├── cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp ├── cppISteamVideo_STEAMVIDEO_INTERFACE_V002.h ├── cxx.h ├── gen.sh ├── gen_wrapper.py ├── lsteamclient.spec ├── steam_defs.h ├── steamclient_main.c ├── steamclient_manual_099y.cpp ├── steamclient_manual_141.cpp ├── steamclient_manual_142.cpp ├── steamclient_manual_144.cpp ├── steamclient_manual_146.cpp ├── steamclient_manual_147.cpp ├── steamclient_manual_148a.cpp ├── steamclient_manual_150.cpp ├── steamclient_manual_151.cpp ├── steamclient_manual_152.cpp ├── steamclient_manual_153a.cpp ├── steamclient_manual_common.cpp ├── steamclient_manual_common.h ├── steamclient_private.h ├── steamclient_wrappers.c ├── steamworks_sdk_099u │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_099v │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_099w │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_099x │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_099y │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_100 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_101 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_101x │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_102 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_102x │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_103 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_104 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_105 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_106 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_107 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_108 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_109 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_110 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── steamworks_sdk_111 │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ └── steamtypes.h ├── steamworks_sdk_111x │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamps3params_internal.h │ └── steamtypes.h ├── steamworks_sdk_112 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamps3params_internal.h │ └── steamtypes.h ├── steamworks_sdk_112x │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_113 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_114 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_115 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_116 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_116x │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_117 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamgamestats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_118 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_119 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_119x │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_120 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_121 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_121x │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_122 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_123 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_123a │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ └── steamtypes.h ├── steamworks_sdk_124 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_125 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_126 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_126a │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_127 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_128 │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ └── steamvr.h ├── steamworks_sdk_128x │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ └── steamvr.h ├── steamworks_sdk_129 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ └── steamvr.h ├── steamworks_sdk_129a │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ └── steamvr.h ├── steamworks_sdk_130 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ └── steamvr.h ├── steamworks_sdk_130x │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ └── steamvr.h ├── steamworks_sdk_131 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ └── steamvr.h ├── steamworks_sdk_132 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamcontrollerpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ ├── steamuniverse.h │ ├── steamvr.h │ └── steamvr_flat.h ├── steamworks_sdk_132x │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_133 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_133a │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_133b │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_133x │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_134 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_135 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_135a │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_136 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_137 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_138 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_138a │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_139 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api.json │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_api_interop.cs │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_140 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api.json │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_api_interop.cs │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_141 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_142 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_143 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_143x │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsocketsserialized.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_143y │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsocketsserialized.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_144 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_ticketgen.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_145 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_146 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_147 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_148a │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_149 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_150 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_151 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamdatagram_tickets.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_152 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_153a │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingfakeip.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_154 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingfakeip.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_155 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamdualsense.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingfakeip.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_156 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamdualsense.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingfakeip.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_157 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamdualsense.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingfakeip.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── steamworks_sdk_158 │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamdualsense.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminput.h │ ├── isteaminventory.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamnetworkingmessages.h │ ├── isteamnetworkingsockets.h │ ├── isteamnetworkingutils.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremoteplay.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api_common.h │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamnetworkingfakeip.h │ ├── steamnetworkingtypes.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── struct_converters.h ├── struct_converters_111x.cpp ├── struct_converters_112.cpp ├── struct_converters_112x.cpp ├── struct_converters_113.cpp ├── struct_converters_114.cpp ├── struct_converters_115.cpp ├── struct_converters_116.cpp ├── struct_converters_116x.cpp ├── struct_converters_117.cpp ├── struct_converters_118.cpp ├── struct_converters_119.cpp ├── struct_converters_119x.cpp ├── struct_converters_120.cpp ├── struct_converters_121.cpp ├── struct_converters_121x.cpp ├── struct_converters_122.cpp ├── struct_converters_123.cpp ├── struct_converters_123a.cpp ├── struct_converters_124.cpp ├── struct_converters_125.cpp ├── struct_converters_126.cpp ├── struct_converters_126a.cpp ├── struct_converters_127.cpp ├── struct_converters_128.cpp ├── struct_converters_128x.cpp ├── struct_converters_129.cpp ├── struct_converters_129a.cpp ├── struct_converters_130.cpp ├── struct_converters_130x.cpp ├── struct_converters_131.cpp ├── struct_converters_132.cpp ├── struct_converters_132x.cpp ├── struct_converters_133.cpp ├── struct_converters_133a.cpp ├── struct_converters_133b.cpp ├── struct_converters_133x.cpp ├── struct_converters_134.cpp ├── struct_converters_135.cpp ├── struct_converters_135a.cpp ├── struct_converters_136.cpp ├── struct_converters_137.cpp ├── struct_converters_138.cpp ├── struct_converters_138a.cpp ├── struct_converters_139.cpp ├── struct_converters_140.cpp ├── struct_converters_141.cpp ├── struct_converters_142.cpp ├── struct_converters_143.cpp ├── struct_converters_143x.cpp ├── struct_converters_143y.cpp ├── struct_converters_144.cpp ├── struct_converters_145.cpp ├── struct_converters_146.cpp ├── struct_converters_147.cpp ├── struct_converters_148a.cpp ├── struct_converters_149.cpp ├── struct_converters_150.cpp ├── struct_converters_151.cpp ├── struct_converters_152.cpp ├── struct_converters_153a.cpp ├── struct_converters_154.cpp ├── struct_converters_155.cpp ├── struct_converters_156.cpp ├── struct_converters_157.cpp ├── struct_converters_158.cpp ├── winISteamAppList.c ├── winISteamAppTicket.c ├── winISteamApps.c ├── winISteamClient.c ├── winISteamController.c ├── winISteamFriends.c ├── winISteamGameCoordinator.c ├── winISteamGameSearch.c ├── winISteamGameServer.c ├── winISteamGameServerStats.c ├── winISteamGameStats.c ├── winISteamHTMLSurface.c ├── winISteamHTTP.c ├── winISteamInput.c ├── winISteamInventory.c ├── winISteamMasterServerUpdater.c ├── winISteamMatchmaking.c ├── winISteamMatchmakingServers.c ├── winISteamMusic.c ├── winISteamMusicRemote.c ├── winISteamNetworking.c ├── winISteamNetworkingFakeUDPPort.c ├── winISteamNetworkingMessages.c ├── winISteamNetworkingSockets.c ├── winISteamNetworkingSocketsSerialized.c ├── winISteamNetworkingUtils.c ├── winISteamParentalSettings.c ├── winISteamParties.c ├── winISteamRemotePlay.c ├── winISteamRemoteStorage.c ├── winISteamScreenshots.c ├── winISteamUGC.c ├── winISteamUnifiedMessages.c ├── winISteamUser.c ├── winISteamUserStats.c ├── winISteamUtils.c ├── winISteamVideo.c ├── win_constructors.h └── win_constructors_table.dat ├── make ├── rules-autoconf.mk ├── rules-cargo.mk ├── rules-cmake.mk ├── rules-common.mk ├── rules-configure.mk ├── rules-meson.mk ├── rules-source.mk ├── rules-winemaker.mk └── utility.mk ├── media-converter ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README ├── blank.mkv ├── blank.ptna ├── build.rs ├── make_blank_ptna.c └── src │ ├── audioconv │ ├── imp.rs │ └── mod.rs │ ├── audioconvbin │ ├── imp.rs │ └── mod.rs │ ├── fossilize.rs │ ├── lib.rs │ ├── murmur3_x64_128.rs │ ├── murmur3_x86_128.rs │ └── videoconv │ ├── imp.rs │ └── mod.rs ├── proton ├── proton_3.7_tracked_files ├── speedhack.json.template ├── steam_helper ├── 32 │ └── libsteam_api.so ├── 64 │ └── libsteam_api.so ├── json │ ├── json-forwards.h │ └── json.h ├── jsoncpp.cpp └── steam.cpp ├── symstore ├── Makefile ├── guidelines-deploy.md ├── guidelines.md └── symstore.c ├── toolmanifest_runtime.vdf ├── user_settings.sample.py ├── vrclient_x64 ├── LICENSE ├── gen.sh ├── gen_wrapper.py ├── make_sdks.sh ├── openvr_0.9.0 │ └── openvr.h ├── openvr_0.9.1 │ └── openvr.h ├── openvr_0.9.13 │ └── openvr.h ├── openvr_0.9.2 │ └── openvr.h ├── openvr_0.9.3 │ └── openvr.h ├── openvr_v0.9.10 │ └── openvr.h ├── openvr_v0.9.11 │ └── openvr.h ├── openvr_v0.9.12 │ └── openvr.h ├── openvr_v0.9.13 │ └── openvr.h ├── openvr_v0.9.14 │ └── openvr.h ├── openvr_v0.9.15 │ └── openvr.h ├── openvr_v0.9.16 │ └── openvr.h ├── openvr_v0.9.17 │ └── openvr.h ├── openvr_v0.9.18 │ └── openvr.h ├── openvr_v0.9.19 │ └── openvr.h ├── openvr_v0.9.20 │ └── openvr.h ├── openvr_v0.9.4 │ └── openvr.h ├── openvr_v0.9.5 │ └── openvr.h ├── openvr_v0.9.6 │ └── openvr.h ├── openvr_v0.9.7 │ └── openvr.h ├── openvr_v0.9.8 │ └── openvr.h ├── openvr_v0.9.9 │ └── openvr.h ├── openvr_v1.0.0 │ └── openvr.h ├── openvr_v1.0.1 │ └── openvr.h ├── openvr_v1.0.10 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.11 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.12 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.13 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.14 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.15 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.16 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.17 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.2 │ └── openvr.h ├── openvr_v1.0.3 │ └── openvr.h ├── openvr_v1.0.3a │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.4 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.5 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.6 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.7 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.8 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.0.9 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.1.3b │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.10.30 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.11.11 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.12.5 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.13.10 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.14.15 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.16.8 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.2.10 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.23.7 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.26.7 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.3.22 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.4.18 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.5.17 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.6.10 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.7.15 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.8.19 │ ├── ivrclientcore.h │ └── openvr.h ├── openvr_v1.9.16 │ ├── ivrclientcore.h │ └── openvr.h ├── tests │ ├── capi_thunks.c │ ├── capi_thunks.h │ ├── capi_thunks_autogen.c │ ├── capi_thunks_autogen.h │ ├── capi_thunks_tests_autogen.c │ └── main_autogen.c └── vrclient_x64 │ ├── cppIVRApplications_IVRApplications_001.cpp │ ├── cppIVRApplications_IVRApplications_001.h │ ├── cppIVRApplications_IVRApplications_002.cpp │ ├── cppIVRApplications_IVRApplications_002.h │ ├── cppIVRApplications_IVRApplications_003.cpp │ ├── cppIVRApplications_IVRApplications_003.h │ ├── cppIVRApplications_IVRApplications_004.cpp │ ├── cppIVRApplications_IVRApplications_004.h │ ├── cppIVRApplications_IVRApplications_005.cpp │ ├── cppIVRApplications_IVRApplications_005.h │ ├── cppIVRApplications_IVRApplications_006.cpp │ ├── cppIVRApplications_IVRApplications_006.h │ ├── cppIVRApplications_IVRApplications_007.cpp │ ├── cppIVRApplications_IVRApplications_007.h │ ├── cppIVRChaperoneSetup_IVRChaperoneSetup_004.cpp │ ├── cppIVRChaperoneSetup_IVRChaperoneSetup_004.h │ ├── cppIVRChaperoneSetup_IVRChaperoneSetup_005.cpp │ ├── cppIVRChaperoneSetup_IVRChaperoneSetup_005.h │ ├── cppIVRChaperoneSetup_IVRChaperoneSetup_006.cpp │ ├── cppIVRChaperoneSetup_IVRChaperoneSetup_006.h │ ├── cppIVRChaperone_IVRChaperone_002.cpp │ ├── cppIVRChaperone_IVRChaperone_002.h │ ├── cppIVRChaperone_IVRChaperone_003.cpp │ ├── cppIVRChaperone_IVRChaperone_003.h │ ├── cppIVRChaperone_IVRChaperone_004.cpp │ ├── cppIVRChaperone_IVRChaperone_004.h │ ├── cppIVRClientCore_IVRClientCore_002.cpp │ ├── cppIVRClientCore_IVRClientCore_002.h │ ├── cppIVRClientCore_IVRClientCore_003.cpp │ ├── cppIVRClientCore_IVRClientCore_003.h │ ├── cppIVRCompositor_IVRCompositor_005.cpp │ ├── cppIVRCompositor_IVRCompositor_005.h │ ├── cppIVRCompositor_IVRCompositor_006.cpp │ ├── cppIVRCompositor_IVRCompositor_006.h │ ├── cppIVRCompositor_IVRCompositor_007.cpp │ ├── cppIVRCompositor_IVRCompositor_007.h │ ├── cppIVRCompositor_IVRCompositor_008.cpp │ ├── cppIVRCompositor_IVRCompositor_008.h │ ├── cppIVRCompositor_IVRCompositor_009.cpp │ ├── cppIVRCompositor_IVRCompositor_009.h │ ├── cppIVRCompositor_IVRCompositor_010.cpp │ ├── cppIVRCompositor_IVRCompositor_010.h │ ├── cppIVRCompositor_IVRCompositor_011.cpp │ ├── cppIVRCompositor_IVRCompositor_011.h │ ├── cppIVRCompositor_IVRCompositor_012.cpp │ ├── cppIVRCompositor_IVRCompositor_012.h │ ├── cppIVRCompositor_IVRCompositor_013.cpp │ ├── cppIVRCompositor_IVRCompositor_013.h │ ├── cppIVRCompositor_IVRCompositor_014.cpp │ ├── cppIVRCompositor_IVRCompositor_014.h │ ├── cppIVRCompositor_IVRCompositor_015.cpp │ ├── cppIVRCompositor_IVRCompositor_015.h │ ├── cppIVRCompositor_IVRCompositor_016.cpp │ ├── cppIVRCompositor_IVRCompositor_016.h │ ├── cppIVRCompositor_IVRCompositor_017.cpp │ ├── cppIVRCompositor_IVRCompositor_017.h │ ├── cppIVRCompositor_IVRCompositor_018.cpp │ ├── cppIVRCompositor_IVRCompositor_018.h │ ├── cppIVRCompositor_IVRCompositor_019.cpp │ ├── cppIVRCompositor_IVRCompositor_019.h │ ├── cppIVRCompositor_IVRCompositor_020.cpp │ ├── cppIVRCompositor_IVRCompositor_020.h │ ├── cppIVRCompositor_IVRCompositor_021.cpp │ ├── cppIVRCompositor_IVRCompositor_021.h │ ├── cppIVRCompositor_IVRCompositor_022.cpp │ ├── cppIVRCompositor_IVRCompositor_022.h │ ├── cppIVRCompositor_IVRCompositor_024.cpp │ ├── cppIVRCompositor_IVRCompositor_024.h │ ├── cppIVRCompositor_IVRCompositor_026.cpp │ ├── cppIVRCompositor_IVRCompositor_026.h │ ├── cppIVRCompositor_IVRCompositor_027.cpp │ ├── cppIVRCompositor_IVRCompositor_027.h │ ├── cppIVRControlPanel_IVRControlPanel_006.cpp │ ├── cppIVRControlPanel_IVRControlPanel_006.h │ ├── cppIVRDriverManager_IVRDriverManager_001.cpp │ ├── cppIVRDriverManager_IVRDriverManager_001.h │ ├── cppIVRExtendedDisplay_IVRExtendedDisplay_001.cpp │ ├── cppIVRExtendedDisplay_IVRExtendedDisplay_001.h │ ├── cppIVRHeadsetView_IVRHeadsetView_001.cpp │ ├── cppIVRHeadsetView_IVRHeadsetView_001.h │ ├── cppIVRIOBuffer_IVRIOBuffer_001.cpp │ ├── cppIVRIOBuffer_IVRIOBuffer_001.h │ ├── cppIVRIOBuffer_IVRIOBuffer_002.cpp │ ├── cppIVRIOBuffer_IVRIOBuffer_002.h │ ├── cppIVRInput_IVRInput_003.cpp │ ├── cppIVRInput_IVRInput_003.h │ ├── cppIVRInput_IVRInput_004.cpp │ ├── cppIVRInput_IVRInput_004.h │ ├── cppIVRInput_IVRInput_005.cpp │ ├── cppIVRInput_IVRInput_005.h │ ├── cppIVRInput_IVRInput_006.cpp │ ├── cppIVRInput_IVRInput_006.h │ ├── cppIVRInput_IVRInput_007.cpp │ ├── cppIVRInput_IVRInput_007.h │ ├── cppIVRInput_IVRInput_010.cpp │ ├── cppIVRInput_IVRInput_010.h │ ├── cppIVRMailbox_IVRMailbox_001.cpp │ ├── cppIVRMailbox_IVRMailbox_001.h │ ├── cppIVRNotifications_IVRNotifications_001.cpp │ ├── cppIVRNotifications_IVRNotifications_001.h │ ├── cppIVRNotifications_IVRNotifications_002.cpp │ ├── cppIVRNotifications_IVRNotifications_002.h │ ├── cppIVROverlayView_IVROverlayView_003.cpp │ ├── cppIVROverlayView_IVROverlayView_003.h │ ├── cppIVROverlay_IVROverlay_001.cpp │ ├── cppIVROverlay_IVROverlay_001.h │ ├── cppIVROverlay_IVROverlay_002.cpp │ ├── cppIVROverlay_IVROverlay_002.h │ ├── cppIVROverlay_IVROverlay_003.cpp │ ├── cppIVROverlay_IVROverlay_003.h │ ├── cppIVROverlay_IVROverlay_004.cpp │ ├── cppIVROverlay_IVROverlay_004.h │ ├── cppIVROverlay_IVROverlay_005.cpp │ ├── cppIVROverlay_IVROverlay_005.h │ ├── cppIVROverlay_IVROverlay_007.cpp │ ├── cppIVROverlay_IVROverlay_007.h │ ├── cppIVROverlay_IVROverlay_008.cpp │ ├── cppIVROverlay_IVROverlay_008.h │ ├── cppIVROverlay_IVROverlay_010.cpp │ ├── cppIVROverlay_IVROverlay_010.h │ ├── cppIVROverlay_IVROverlay_011.cpp │ ├── cppIVROverlay_IVROverlay_011.h │ ├── cppIVROverlay_IVROverlay_012.cpp │ ├── cppIVROverlay_IVROverlay_012.h │ ├── cppIVROverlay_IVROverlay_013.cpp │ ├── cppIVROverlay_IVROverlay_013.h │ ├── cppIVROverlay_IVROverlay_014.cpp │ ├── cppIVROverlay_IVROverlay_014.h │ ├── cppIVROverlay_IVROverlay_016.cpp │ ├── cppIVROverlay_IVROverlay_016.h │ ├── cppIVROverlay_IVROverlay_017.cpp │ ├── cppIVROverlay_IVROverlay_017.h │ ├── cppIVROverlay_IVROverlay_018.cpp │ ├── cppIVROverlay_IVROverlay_018.h │ ├── cppIVROverlay_IVROverlay_019.cpp │ ├── cppIVROverlay_IVROverlay_019.h │ ├── cppIVROverlay_IVROverlay_020.cpp │ ├── cppIVROverlay_IVROverlay_020.h │ ├── cppIVROverlay_IVROverlay_021.cpp │ ├── cppIVROverlay_IVROverlay_021.h │ ├── cppIVROverlay_IVROverlay_022.cpp │ ├── cppIVROverlay_IVROverlay_022.h │ ├── cppIVROverlay_IVROverlay_024.cpp │ ├── cppIVROverlay_IVROverlay_024.h │ ├── cppIVROverlay_IVROverlay_025.cpp │ ├── cppIVROverlay_IVROverlay_025.h │ ├── cppIVROverlay_IVROverlay_026.cpp │ ├── cppIVROverlay_IVROverlay_026.h │ ├── cppIVROverlay_IVROverlay_027.cpp │ ├── cppIVROverlay_IVROverlay_027.h │ ├── cppIVRRenderModels_IVRRenderModels_001.cpp │ ├── cppIVRRenderModels_IVRRenderModels_001.h │ ├── cppIVRRenderModels_IVRRenderModels_002.cpp │ ├── cppIVRRenderModels_IVRRenderModels_002.h │ ├── cppIVRRenderModels_IVRRenderModels_004.cpp │ ├── cppIVRRenderModels_IVRRenderModels_004.h │ ├── cppIVRRenderModels_IVRRenderModels_005.cpp │ ├── cppIVRRenderModels_IVRRenderModels_005.h │ ├── cppIVRRenderModels_IVRRenderModels_006.cpp │ ├── cppIVRRenderModels_IVRRenderModels_006.h │ ├── cppIVRResources_IVRResources_001.cpp │ ├── cppIVRResources_IVRResources_001.h │ ├── cppIVRScreenshots_IVRScreenshots_001.cpp │ ├── cppIVRScreenshots_IVRScreenshots_001.h │ ├── cppIVRSettings_IVRSettings_001.cpp │ ├── cppIVRSettings_IVRSettings_001.h │ ├── cppIVRSettings_IVRSettings_002.cpp │ ├── cppIVRSettings_IVRSettings_002.h │ ├── cppIVRSettings_IVRSettings_003.cpp │ ├── cppIVRSettings_IVRSettings_003.h │ ├── cppIVRSystem_IVRSystem_003.cpp │ ├── cppIVRSystem_IVRSystem_003.h │ ├── cppIVRSystem_IVRSystem_004.cpp │ ├── cppIVRSystem_IVRSystem_004.h │ ├── cppIVRSystem_IVRSystem_005.cpp │ ├── cppIVRSystem_IVRSystem_005.h │ ├── cppIVRSystem_IVRSystem_006.cpp │ ├── cppIVRSystem_IVRSystem_006.h │ ├── cppIVRSystem_IVRSystem_009.cpp │ ├── cppIVRSystem_IVRSystem_009.h │ ├── cppIVRSystem_IVRSystem_010.cpp │ ├── cppIVRSystem_IVRSystem_010.h │ ├── cppIVRSystem_IVRSystem_011.cpp │ ├── cppIVRSystem_IVRSystem_011.h │ ├── cppIVRSystem_IVRSystem_012.cpp │ ├── cppIVRSystem_IVRSystem_012.h │ ├── cppIVRSystem_IVRSystem_014.cpp │ ├── cppIVRSystem_IVRSystem_014.h │ ├── cppIVRSystem_IVRSystem_015.cpp │ ├── cppIVRSystem_IVRSystem_015.h │ ├── cppIVRSystem_IVRSystem_016.cpp │ ├── cppIVRSystem_IVRSystem_016.h │ ├── cppIVRSystem_IVRSystem_017.cpp │ ├── cppIVRSystem_IVRSystem_017.h │ ├── cppIVRSystem_IVRSystem_019.cpp │ ├── cppIVRSystem_IVRSystem_019.h │ ├── cppIVRSystem_IVRSystem_020.cpp │ ├── cppIVRSystem_IVRSystem_020.h │ ├── cppIVRSystem_IVRSystem_021.cpp │ ├── cppIVRSystem_IVRSystem_021.h │ ├── cppIVRSystem_IVRSystem_022.cpp │ ├── cppIVRSystem_IVRSystem_022.h │ ├── cppIVRTrackedCamera_IVRTrackedCamera_001.cpp │ ├── cppIVRTrackedCamera_IVRTrackedCamera_001.h │ ├── cppIVRTrackedCamera_IVRTrackedCamera_002.cpp │ ├── cppIVRTrackedCamera_IVRTrackedCamera_002.h │ ├── cppIVRTrackedCamera_IVRTrackedCamera_003.cpp │ ├── cppIVRTrackedCamera_IVRTrackedCamera_003.h │ ├── cppIVRTrackedCamera_IVRTrackedCamera_004.cpp │ ├── cppIVRTrackedCamera_IVRTrackedCamera_004.h │ ├── cppIVRTrackedCamera_IVRTrackedCamera_005.cpp │ ├── cppIVRTrackedCamera_IVRTrackedCamera_005.h │ ├── cppIVRTrackedCamera_IVRTrackedCamera_006.cpp │ ├── cppIVRTrackedCamera_IVRTrackedCamera_006.h │ ├── cxx.h │ ├── dxvk-interop.h │ ├── flatapi.c │ ├── flatapi.h │ ├── json │ ├── json-forwards.h │ └── json.h │ ├── json_converter.cpp │ ├── jsoncpp.cpp │ ├── struct_converters.h │ ├── struct_converters_090.cpp │ ├── struct_converters_091.cpp │ ├── struct_converters_0910.cpp │ ├── struct_converters_0912.cpp │ ├── struct_converters_0913.cpp │ ├── struct_converters_0914.cpp │ ├── struct_converters_0915.cpp │ ├── struct_converters_0916.cpp │ ├── struct_converters_0917.cpp │ ├── struct_converters_0918.cpp │ ├── struct_converters_0919.cpp │ ├── struct_converters_092.cpp │ ├── struct_converters_0920.cpp │ ├── struct_converters_093.cpp │ ├── struct_converters_094.cpp │ ├── struct_converters_096.cpp │ ├── struct_converters_097.cpp │ ├── struct_converters_098.cpp │ ├── struct_converters_099.cpp │ ├── struct_converters_100.cpp │ ├── struct_converters_101.cpp │ ├── struct_converters_1010.cpp │ ├── struct_converters_1011.cpp │ ├── struct_converters_1012.cpp │ ├── struct_converters_1013.cpp │ ├── struct_converters_1014.cpp │ ├── struct_converters_1015.cpp │ ├── struct_converters_1016.cpp │ ├── struct_converters_1017.cpp │ ├── struct_converters_102.cpp │ ├── struct_converters_103.cpp │ ├── struct_converters_103a.cpp │ ├── struct_converters_104.cpp │ ├── struct_converters_105.cpp │ ├── struct_converters_106.cpp │ ├── struct_converters_107.cpp │ ├── struct_converters_108.cpp │ ├── struct_converters_109.cpp │ ├── struct_converters_11030.cpp │ ├── struct_converters_11111.cpp │ ├── struct_converters_1125.cpp │ ├── struct_converters_11310.cpp │ ├── struct_converters_113b.cpp │ ├── struct_converters_11415.cpp │ ├── struct_converters_1168.cpp │ ├── struct_converters_1210.cpp │ ├── struct_converters_1237.cpp │ ├── struct_converters_1267.cpp │ ├── struct_converters_1322.cpp │ ├── struct_converters_1418.cpp │ ├── struct_converters_1517.cpp │ ├── struct_converters_1610.cpp │ ├── struct_converters_1715.cpp │ ├── struct_converters_1819.cpp │ ├── struct_converters_1916.cpp │ ├── vrclient_defs.h │ ├── vrclient_main.c │ ├── vrclient_private.h │ ├── vrclient_x64.spec │ ├── winIVRApplications.c │ ├── winIVRChaperone.c │ ├── winIVRChaperoneSetup.c │ ├── winIVRClientCore.c │ ├── winIVRCompositor.c │ ├── winIVRControlPanel.c │ ├── winIVRDriverManager.c │ ├── winIVRExtendedDisplay.c │ ├── winIVRHeadsetView.c │ ├── winIVRIOBuffer.c │ ├── winIVRInput.c │ ├── winIVRMailbox.c │ ├── winIVRNotifications.c │ ├── winIVROverlay.c │ ├── winIVROverlayView.c │ ├── winIVRRenderModels.c │ ├── winIVRResources.c │ ├── winIVRScreenshots.c │ ├── winIVRSettings.c │ ├── winIVRSystem.c │ ├── winIVRTrackedCamera.c │ ├── win_constructors.h │ ├── win_constructors_table.dat │ └── win_destructors.h └── wineopenxr ├── dxvk-interop.h ├── loader_structs.h ├── make_openxr ├── openxr.c ├── openxr_private.h ├── openxr_thunks.c ├── openxr_thunks.h ├── wineopenxr.h ├── wineopenxr.spec ├── wineopenxr64.json └── xr.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compatibility-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/.github/ISSUE_TEMPLATE/compatibility-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/whitelist-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/.github/ISSUE_TEMPLATE/whitelist-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.proton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/LICENSE.proton -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/README.md -------------------------------------------------------------------------------- /compatibilitytool.vdf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/compatibilitytool.vdf.template -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/configure.sh -------------------------------------------------------------------------------- /default_pfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/default_pfx.py -------------------------------------------------------------------------------- /dist.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/dist.LICENSE -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/binutils.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/binutils.Dockerfile.in -------------------------------------------------------------------------------- /docker/build-base.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/build-base.Dockerfile.in -------------------------------------------------------------------------------- /docker/context/ninja-jobserver-client.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/context/ninja-jobserver-client.patch -------------------------------------------------------------------------------- /docker/gcc.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/gcc.Dockerfile.in -------------------------------------------------------------------------------- /docker/mingw-crt.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/mingw-crt.Dockerfile.in -------------------------------------------------------------------------------- /docker/mingw-gcc.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/mingw-gcc.Dockerfile.in -------------------------------------------------------------------------------- /docker/mingw-headers.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/mingw-headers.Dockerfile.in -------------------------------------------------------------------------------- /docker/mingw-pthreads.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/mingw-pthreads.Dockerfile.in -------------------------------------------------------------------------------- /docker/mingw-widl.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/mingw-widl.Dockerfile.in -------------------------------------------------------------------------------- /docker/proton.Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docker/proton.Dockerfile.in -------------------------------------------------------------------------------- /docs/CONTROLLERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docs/CONTROLLERS.md -------------------------------------------------------------------------------- /docs/ICMP_ECHO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docs/ICMP_ECHO.md -------------------------------------------------------------------------------- /docs/PRIME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docs/PRIME.md -------------------------------------------------------------------------------- /docs/REBASING_TIPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docs/REBASING_TIPS.md -------------------------------------------------------------------------------- /docs/THREAD_PRIORITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/docs/THREAD_PRIORITY.md -------------------------------------------------------------------------------- /filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/filelock.py -------------------------------------------------------------------------------- /fonts/noto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/LICENSE -------------------------------------------------------------------------------- /fonts/noto/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansArabic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansArabic-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansArmenian-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansArmenian-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansBengali-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansBengali-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansBengaliUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansBengaliUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansChakma-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansChakma-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansCoptic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansCoptic-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansDevanagariUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansDevanagariUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansGeorgian-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansGeorgian-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansGujarati-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansGujarati-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansGujaratiUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansGujaratiUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansGurmukhiUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansGurmukhiUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansHebrew-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansHebrew-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansKannadaUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansKannadaUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansKhmer-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansKhmer-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansMalayalamUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansMalayalamUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansMath-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansMath-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansMeeteiMayek-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansMeeteiMayek-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansOlChiki-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansOlChiki-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansOriyaUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansOriyaUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansSinhalaUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansSinhalaUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansSoraSompeng-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansSoraSompeng-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansSymbols-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansSymbols-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansSymbols2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansSymbols2-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansTamil-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansTamil-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansTamilUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansTamilUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansTeluguUI-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansTeluguUI-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansThaana-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansThaana-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSansThai-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSansThai-Regular.ttf -------------------------------------------------------------------------------- /fonts/noto/NotoSerifTibetan-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/noto/NotoSerifTibetan-Regular.ttf -------------------------------------------------------------------------------- /fonts/patches/LiberationMono-Regular.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/LiberationMono-Regular.patch -------------------------------------------------------------------------------- /fonts/patches/Malgun-FontMenuNameDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/Malgun-FontMenuNameDB -------------------------------------------------------------------------------- /fonts/patches/NSimSun-FontMenuNameDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/NSimSun-FontMenuNameDB -------------------------------------------------------------------------------- /fonts/patches/SimSun-FontMenuNameDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/SimSun-FontMenuNameDB -------------------------------------------------------------------------------- /fonts/patches/UmeGothic-nametable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/UmeGothic-nametable.patch -------------------------------------------------------------------------------- /fonts/patches/UmePGothic-nametable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/UmePGothic-nametable.patch -------------------------------------------------------------------------------- /fonts/patches/UmeUIGothic-nametable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/UmeUIGothic-nametable.patch -------------------------------------------------------------------------------- /fonts/patches/YaHei-FontMenuNameDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/patches/YaHei-FontMenuNameDB -------------------------------------------------------------------------------- /fonts/ranges/arial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ranges/arial -------------------------------------------------------------------------------- /fonts/ranges/micross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ranges/micross -------------------------------------------------------------------------------- /fonts/ranges/nirmala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ranges/nirmala -------------------------------------------------------------------------------- /fonts/scripts/generatefont.pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/scripts/generatefont.pe -------------------------------------------------------------------------------- /fonts/scripts/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/scripts/merge.py -------------------------------------------------------------------------------- /fonts/source-han-sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/source-han-sans/LICENSE.txt -------------------------------------------------------------------------------- /fonts/source-han-sans/cidfont.ps.OTC.K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/source-han-sans/cidfont.ps.OTC.K -------------------------------------------------------------------------------- /fonts/source-han-sans/cidfont.ps.OTC.SC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/source-han-sans/cidfont.ps.OTC.SC -------------------------------------------------------------------------------- /fonts/source-han-sans/cidfontinfo.OTC.K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/source-han-sans/cidfontinfo.OTC.K -------------------------------------------------------------------------------- /fonts/source-han-sans/cidfontinfo.OTC.SC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/source-han-sans/cidfontinfo.OTC.SC -------------------------------------------------------------------------------- /fonts/source-han-sans/features.OTC.K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/source-han-sans/features.OTC.K -------------------------------------------------------------------------------- /fonts/source-han-sans/features.OTC.SC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/source-han-sans/features.OTC.SC -------------------------------------------------------------------------------- /fonts/ume/PROTON_NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ume/PROTON_NOTE.md -------------------------------------------------------------------------------- /fonts/ume/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ume/license.html -------------------------------------------------------------------------------- /fonts/ume/ume-pgo4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ume/ume-pgo4.ttf -------------------------------------------------------------------------------- /fonts/ume/ume-tgo4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ume/ume-tgo4.ttf -------------------------------------------------------------------------------- /fonts/ume/ume-ugo4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/fonts/ume/ume-ugo4.ttf -------------------------------------------------------------------------------- /lsteamclient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/LICENSE -------------------------------------------------------------------------------- /lsteamclient/cb_converters.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cb_converters.dat -------------------------------------------------------------------------------- /lsteamclient/cb_converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cb_converters.h -------------------------------------------------------------------------------- /lsteamclient/cb_getapi_sizes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cb_getapi_sizes.dat -------------------------------------------------------------------------------- /lsteamclient/cb_getapi_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cb_getapi_table.dat -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient006.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient007.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient008.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient009.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient010.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient011.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient012.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient013.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient014.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient014.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient015.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient016.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient017.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient018.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient018.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient019.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient019.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamClient_SteamClient020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamClient_SteamClient020.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput001.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput001.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput002.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput002.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput005.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput005.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput006.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamInput_SteamInput006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamInput_SteamInput006.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser004.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser004.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser005.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser005.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser006.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser006.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser007.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser007.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser007.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser008.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser008.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser009.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser009.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser010.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser010.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser011.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser011.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser012.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser012.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser013.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser013.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser014.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser014.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser014.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser015.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser015.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser016.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser016.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser017.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser017.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser018.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser018.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser018.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser019.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser019.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser019.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser019.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser020.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser020.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser021.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser021.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser021.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser022.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser022.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser022.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser023.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser023.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUser_SteamUser023.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUser_SteamUser023.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils002.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils002.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils004.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils004.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils005.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils005.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils006.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils006.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils007.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils007.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils007.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils008.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils008.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils009.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils009.h -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils010.cpp -------------------------------------------------------------------------------- /lsteamclient/cppISteamUtils_SteamUtils010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cppISteamUtils_SteamUtils010.h -------------------------------------------------------------------------------- /lsteamclient/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/cxx.h -------------------------------------------------------------------------------- /lsteamclient/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/gen.sh -------------------------------------------------------------------------------- /lsteamclient/gen_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/gen_wrapper.py -------------------------------------------------------------------------------- /lsteamclient/lsteamclient.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/lsteamclient.spec -------------------------------------------------------------------------------- /lsteamclient/steam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steam_defs.h -------------------------------------------------------------------------------- /lsteamclient/steamclient_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_main.c -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_099y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_099y.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_141.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_141.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_142.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_142.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_144.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_146.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_146.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_147.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_148a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_148a.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_150.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_151.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_152.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_152.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_153a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_153a.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_common.cpp -------------------------------------------------------------------------------- /lsteamclient/steamclient_manual_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_manual_common.h -------------------------------------------------------------------------------- /lsteamclient/steamclient_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_private.h -------------------------------------------------------------------------------- /lsteamclient/steamclient_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamclient_wrappers.c -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099u/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099u/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099u/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099u/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099u/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099u/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099u/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099u/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099u/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099u/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099v/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099v/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099v/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099v/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099v/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099v/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099v/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099v/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099v/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099v/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099w/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099w/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099w/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099w/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099w/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099w/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099w/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099w/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099w/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099w/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099y/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099y/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099y/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099y/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099y/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099y/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099y/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099y/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_099y/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_099y/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_100/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_100/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_100/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_100/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_100/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_100/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_100/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_100/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_100/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_100/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_100/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_100/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_101x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_101x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_102x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_102x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_103/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_103/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_103/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_103/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_103/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_103/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_103/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_103/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_103/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_103/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_103/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_103/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_104/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_104/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_104/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_104/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_104/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_104/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_104/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_104/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_104/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_104/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_104/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_104/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_105/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_105/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_105/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_105/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_105/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_105/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_105/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_105/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_105/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_105/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_105/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_105/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_106/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_106/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_106/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_106/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_106/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_106/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_106/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_106/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_106/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_106/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_106/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_106/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_107/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_107/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_107/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_107/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_107/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_107/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_107/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_107/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_107/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_107/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_107/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_107/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_108/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_108/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_108/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_108/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_108/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_108/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_108/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_108/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_108/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_108/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_108/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_108/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_109/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_109/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_109/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_109/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_109/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_109/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_109/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_109/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_109/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_109/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_109/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_109/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_110/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_110/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_110/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_110/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_110/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_110/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_110/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_110/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_110/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_110/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_110/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_110/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_111x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_111x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112x/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112x/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_112x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_112x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_113/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_113/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_113/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_113/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_113/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_113/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_113/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_113/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_113/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_113/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_113/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_113/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_113/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_113/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_114/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_114/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_114/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_114/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_114/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_114/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_114/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_114/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_114/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_114/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_114/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_114/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_114/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_114/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_115/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_115/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_115/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_115/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_115/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_115/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_115/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_115/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_115/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_115/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_115/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_115/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_115/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_115/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116x/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116x/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_116x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_116x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_117/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_117/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_117/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_117/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_117/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_117/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_117/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_117/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_118/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_118/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_118/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_118/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_118/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_118/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_118/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_118/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119x/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119x/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_119x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_119x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_120/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_120/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_120/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_120/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_120/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_120/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_120/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_120/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121x/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121x/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121x/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121x/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121x/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121x/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121x/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121x/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121x/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121x/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_121x/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_121x/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_122/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_122/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_122/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_122/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_122/isteamutils.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_122/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_122/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_122/steamtypes.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_123/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_123/isteamapps.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_123/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_123/isteamclient.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_123/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_123/isteamhttp.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_123/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_123/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_123/isteamuser.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_123/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_123/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_123a/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_124/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_124/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_124/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_125/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_125/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_125/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_126/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_126/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_126/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_126/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_126/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_126a/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_127/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_127/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_127/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_127/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_127/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_128/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_128/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_128/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_128/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_128/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_128/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_128/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_128x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_128x/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_128x/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_129/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_129/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_129/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_129/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_129/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_129/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_129/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_129a/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_129a/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_129a/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_130/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_130/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_130/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_130/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_130/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_130/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_130/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_130x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_130x/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_130x/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_131/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_131/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_131/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_131/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_131/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_131/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_131/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_132/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_132/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_132/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_132/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_132/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_132/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_132/steamvr.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_132x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_133/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_133/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_133/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_133/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_133/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_133a/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_133b/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_133x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_134/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_134/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_134/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_134/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_134/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_135/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_135/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_135/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_135/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_135/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_135a/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_136/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_136/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_136/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_136/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_136/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_137/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_137/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_137/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_137/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_137/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_138/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_138/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_138/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_138/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_138/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_138a/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_139/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_139/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_139/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_139/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_139/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_140/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_140/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_140/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_140/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_140/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_141/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_141/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_141/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_141/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_141/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_142/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_142/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_142/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_142/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_142/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_143/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_143/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_143/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_143/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_143/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_143x/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_143y/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_144/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_144/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_144/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_144/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_144/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_145/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_145/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_145/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_145/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_145/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_146/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_146/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_146/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_146/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_146/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_147/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_147/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_147/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_147/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_147/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_148a/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_149/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_149/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_149/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_149/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_149/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_150/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_150/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_150/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_150/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_150/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_151/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_151/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_151/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_151/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_151/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_152/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_152/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_152/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_152/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_154/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_154/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_154/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_154/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_155/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_155/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_155/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_155/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_156/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_156/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_156/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_156/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_157/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_157/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_157/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_157/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_158/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_158/isteamugc.h -------------------------------------------------------------------------------- /lsteamclient/steamworks_sdk_158/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/steamworks_sdk_158/steam_api.h -------------------------------------------------------------------------------- /lsteamclient/struct_converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters.h -------------------------------------------------------------------------------- /lsteamclient/struct_converters_111x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_111x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_112.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_112x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_112x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_113.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_114.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_115.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_116.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_116.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_116x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_116x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_117.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_117.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_118.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_118.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_119.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_119.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_119x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_119x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_120.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_121.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_121x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_121x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_122.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_123.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_123a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_123a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_124.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_125.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_126.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_126.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_126a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_126a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_127.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_127.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_128.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_128x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_128x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_129.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_129.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_129a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_129a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_130.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_130.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_130x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_130x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_131.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_131.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_132.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_132.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_132x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_132x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_133.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_133.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_133a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_133a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_133b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_133b.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_133x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_133x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_134.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_134.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_135.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_135.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_135a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_135a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_136.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_136.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_137.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_137.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_138.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_138.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_138a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_138a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_139.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_139.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_140.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_141.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_141.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_142.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_142.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_143.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_143.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_143x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_143x.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_143y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_143y.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_144.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_145.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_145.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_146.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_146.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_147.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_148a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_148a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_149.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_149.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_150.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_151.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_152.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_152.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_153a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_153a.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_154.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_155.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_156.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_156.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_157.cpp -------------------------------------------------------------------------------- /lsteamclient/struct_converters_158.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/struct_converters_158.cpp -------------------------------------------------------------------------------- /lsteamclient/winISteamAppList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamAppList.c -------------------------------------------------------------------------------- /lsteamclient/winISteamAppTicket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamAppTicket.c -------------------------------------------------------------------------------- /lsteamclient/winISteamApps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamApps.c -------------------------------------------------------------------------------- /lsteamclient/winISteamClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamClient.c -------------------------------------------------------------------------------- /lsteamclient/winISteamController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamController.c -------------------------------------------------------------------------------- /lsteamclient/winISteamFriends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamFriends.c -------------------------------------------------------------------------------- /lsteamclient/winISteamGameCoordinator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamGameCoordinator.c -------------------------------------------------------------------------------- /lsteamclient/winISteamGameSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamGameSearch.c -------------------------------------------------------------------------------- /lsteamclient/winISteamGameServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamGameServer.c -------------------------------------------------------------------------------- /lsteamclient/winISteamGameServerStats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamGameServerStats.c -------------------------------------------------------------------------------- /lsteamclient/winISteamGameStats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamGameStats.c -------------------------------------------------------------------------------- /lsteamclient/winISteamHTMLSurface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamHTMLSurface.c -------------------------------------------------------------------------------- /lsteamclient/winISteamHTTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamHTTP.c -------------------------------------------------------------------------------- /lsteamclient/winISteamInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamInput.c -------------------------------------------------------------------------------- /lsteamclient/winISteamInventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamInventory.c -------------------------------------------------------------------------------- /lsteamclient/winISteamMasterServerUpdater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamMasterServerUpdater.c -------------------------------------------------------------------------------- /lsteamclient/winISteamMatchmaking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamMatchmaking.c -------------------------------------------------------------------------------- /lsteamclient/winISteamMatchmakingServers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamMatchmakingServers.c -------------------------------------------------------------------------------- /lsteamclient/winISteamMusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamMusic.c -------------------------------------------------------------------------------- /lsteamclient/winISteamMusicRemote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamMusicRemote.c -------------------------------------------------------------------------------- /lsteamclient/winISteamNetworking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamNetworking.c -------------------------------------------------------------------------------- /lsteamclient/winISteamNetworkingMessages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamNetworkingMessages.c -------------------------------------------------------------------------------- /lsteamclient/winISteamNetworkingSockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamNetworkingSockets.c -------------------------------------------------------------------------------- /lsteamclient/winISteamNetworkingUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamNetworkingUtils.c -------------------------------------------------------------------------------- /lsteamclient/winISteamParentalSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamParentalSettings.c -------------------------------------------------------------------------------- /lsteamclient/winISteamParties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamParties.c -------------------------------------------------------------------------------- /lsteamclient/winISteamRemotePlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamRemotePlay.c -------------------------------------------------------------------------------- /lsteamclient/winISteamRemoteStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamRemoteStorage.c -------------------------------------------------------------------------------- /lsteamclient/winISteamScreenshots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamScreenshots.c -------------------------------------------------------------------------------- /lsteamclient/winISteamUGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamUGC.c -------------------------------------------------------------------------------- /lsteamclient/winISteamUnifiedMessages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamUnifiedMessages.c -------------------------------------------------------------------------------- /lsteamclient/winISteamUser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamUser.c -------------------------------------------------------------------------------- /lsteamclient/winISteamUserStats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamUserStats.c -------------------------------------------------------------------------------- /lsteamclient/winISteamUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamUtils.c -------------------------------------------------------------------------------- /lsteamclient/winISteamVideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/winISteamVideo.c -------------------------------------------------------------------------------- /lsteamclient/win_constructors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/win_constructors.h -------------------------------------------------------------------------------- /lsteamclient/win_constructors_table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/lsteamclient/win_constructors_table.dat -------------------------------------------------------------------------------- /make/rules-autoconf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-autoconf.mk -------------------------------------------------------------------------------- /make/rules-cargo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-cargo.mk -------------------------------------------------------------------------------- /make/rules-cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-cmake.mk -------------------------------------------------------------------------------- /make/rules-common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-common.mk -------------------------------------------------------------------------------- /make/rules-configure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-configure.mk -------------------------------------------------------------------------------- /make/rules-meson.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-meson.mk -------------------------------------------------------------------------------- /make/rules-source.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-source.mk -------------------------------------------------------------------------------- /make/rules-winemaker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/rules-winemaker.mk -------------------------------------------------------------------------------- /make/utility.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/make/utility.mk -------------------------------------------------------------------------------- /media-converter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/Cargo.lock -------------------------------------------------------------------------------- /media-converter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/Cargo.toml -------------------------------------------------------------------------------- /media-converter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/Makefile -------------------------------------------------------------------------------- /media-converter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/README -------------------------------------------------------------------------------- /media-converter/blank.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/blank.mkv -------------------------------------------------------------------------------- /media-converter/blank.ptna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/blank.ptna -------------------------------------------------------------------------------- /media-converter/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/build.rs -------------------------------------------------------------------------------- /media-converter/make_blank_ptna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/make_blank_ptna.c -------------------------------------------------------------------------------- /media-converter/src/audioconv/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/audioconv/imp.rs -------------------------------------------------------------------------------- /media-converter/src/audioconv/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/audioconv/mod.rs -------------------------------------------------------------------------------- /media-converter/src/audioconvbin/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/audioconvbin/imp.rs -------------------------------------------------------------------------------- /media-converter/src/audioconvbin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/audioconvbin/mod.rs -------------------------------------------------------------------------------- /media-converter/src/fossilize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/fossilize.rs -------------------------------------------------------------------------------- /media-converter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/lib.rs -------------------------------------------------------------------------------- /media-converter/src/murmur3_x64_128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/murmur3_x64_128.rs -------------------------------------------------------------------------------- /media-converter/src/murmur3_x86_128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/murmur3_x86_128.rs -------------------------------------------------------------------------------- /media-converter/src/videoconv/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/videoconv/imp.rs -------------------------------------------------------------------------------- /media-converter/src/videoconv/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/media-converter/src/videoconv/mod.rs -------------------------------------------------------------------------------- /proton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/proton -------------------------------------------------------------------------------- /proton_3.7_tracked_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/proton_3.7_tracked_files -------------------------------------------------------------------------------- /speedhack.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/speedhack.json.template -------------------------------------------------------------------------------- /steam_helper/32/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/steam_helper/32/libsteam_api.so -------------------------------------------------------------------------------- /steam_helper/64/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/steam_helper/64/libsteam_api.so -------------------------------------------------------------------------------- /steam_helper/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/steam_helper/json/json-forwards.h -------------------------------------------------------------------------------- /steam_helper/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/steam_helper/json/json.h -------------------------------------------------------------------------------- /steam_helper/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/steam_helper/jsoncpp.cpp -------------------------------------------------------------------------------- /steam_helper/steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/steam_helper/steam.cpp -------------------------------------------------------------------------------- /symstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/symstore/Makefile -------------------------------------------------------------------------------- /symstore/guidelines-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/symstore/guidelines-deploy.md -------------------------------------------------------------------------------- /symstore/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/symstore/guidelines.md -------------------------------------------------------------------------------- /symstore/symstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/symstore/symstore.c -------------------------------------------------------------------------------- /toolmanifest_runtime.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/toolmanifest_runtime.vdf -------------------------------------------------------------------------------- /user_settings.sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/user_settings.sample.py -------------------------------------------------------------------------------- /vrclient_x64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/LICENSE -------------------------------------------------------------------------------- /vrclient_x64/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/gen.sh -------------------------------------------------------------------------------- /vrclient_x64/gen_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/gen_wrapper.py -------------------------------------------------------------------------------- /vrclient_x64/make_sdks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/make_sdks.sh -------------------------------------------------------------------------------- /vrclient_x64/openvr_0.9.0/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_0.9.0/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_0.9.1/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_0.9.1/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_0.9.13/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_0.9.13/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_0.9.2/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_0.9.2/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_0.9.3/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_0.9.3/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.10/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.10/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.11/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.11/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.12/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.12/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.13/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.13/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.14/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.14/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.15/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.15/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.16/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.16/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.17/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.17/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.18/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.18/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.19/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.19/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.20/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.20/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.4/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.4/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.5/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.5/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.6/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.6/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.7/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.7/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.8/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.8/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v0.9.9/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v0.9.9/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.0/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.0/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.1/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.1/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.10/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.10/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.10/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.10/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.11/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.11/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.11/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.11/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.12/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.12/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.12/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.12/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.13/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.13/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.13/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.13/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.14/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.14/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.14/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.14/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.15/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.15/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.15/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.15/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.16/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.16/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.16/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.16/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.17/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.17/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.17/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.17/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.2/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.2/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.3/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.3/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.3a/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.3a/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.3a/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.3a/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.4/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.4/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.4/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.4/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.5/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.5/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.5/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.5/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.6/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.6/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.6/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.6/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.7/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.7/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.7/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.7/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.8/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.8/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.8/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.8/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.9/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.9/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.0.9/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.0.9/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.1.3b/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.1.3b/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.1.3b/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.1.3b/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.10.30/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.10.30/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.11.11/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.11.11/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.12.5/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.12.5/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.12.5/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.12.5/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.13.10/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.13.10/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.14.15/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.14.15/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.16.8/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.16.8/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.16.8/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.16.8/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.2.10/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.2.10/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.2.10/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.2.10/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.23.7/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.23.7/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.23.7/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.23.7/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.26.7/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.26.7/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.26.7/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.26.7/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.3.22/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.3.22/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.3.22/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.3.22/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.4.18/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.4.18/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.4.18/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.4.18/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.5.17/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.5.17/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.5.17/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.5.17/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.6.10/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.6.10/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.6.10/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.6.10/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.7.15/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.7.15/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.7.15/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.7.15/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.8.19/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.8.19/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.8.19/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.8.19/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.9.16/ivrclientcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.9.16/ivrclientcore.h -------------------------------------------------------------------------------- /vrclient_x64/openvr_v1.9.16/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/openvr_v1.9.16/openvr.h -------------------------------------------------------------------------------- /vrclient_x64/tests/capi_thunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/tests/capi_thunks.c -------------------------------------------------------------------------------- /vrclient_x64/tests/capi_thunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/tests/capi_thunks.h -------------------------------------------------------------------------------- /vrclient_x64/tests/capi_thunks_autogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/tests/capi_thunks_autogen.c -------------------------------------------------------------------------------- /vrclient_x64/tests/capi_thunks_autogen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/tests/capi_thunks_autogen.h -------------------------------------------------------------------------------- /vrclient_x64/tests/main_autogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/tests/main_autogen.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/cxx.h -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/dxvk-interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/dxvk-interop.h -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/flatapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/flatapi.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/flatapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/flatapi.h -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/json/json.h -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/jsoncpp.cpp -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/vrclient_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/vrclient_defs.h -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/vrclient_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/vrclient_main.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/vrclient_x64.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/vrclient_x64.spec -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVRChaperone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVRChaperone.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVRIOBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVRIOBuffer.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVRInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVRInput.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVRMailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVRMailbox.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVROverlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVROverlay.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVRResources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVRResources.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVRSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVRSettings.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/winIVRSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/winIVRSystem.c -------------------------------------------------------------------------------- /vrclient_x64/vrclient_x64/win_destructors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/vrclient_x64/vrclient_x64/win_destructors.h -------------------------------------------------------------------------------- /wineopenxr/dxvk-interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/dxvk-interop.h -------------------------------------------------------------------------------- /wineopenxr/loader_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/loader_structs.h -------------------------------------------------------------------------------- /wineopenxr/make_openxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/make_openxr -------------------------------------------------------------------------------- /wineopenxr/openxr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/openxr.c -------------------------------------------------------------------------------- /wineopenxr/openxr_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/openxr_private.h -------------------------------------------------------------------------------- /wineopenxr/openxr_thunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/openxr_thunks.c -------------------------------------------------------------------------------- /wineopenxr/openxr_thunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/openxr_thunks.h -------------------------------------------------------------------------------- /wineopenxr/wineopenxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/wineopenxr.h -------------------------------------------------------------------------------- /wineopenxr/wineopenxr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/wineopenxr.spec -------------------------------------------------------------------------------- /wineopenxr/wineopenxr64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/wineopenxr64.json -------------------------------------------------------------------------------- /wineopenxr/xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtSquigs/Proton-SpeedHack/HEAD/wineopenxr/xr.xml --------------------------------------------------------------------------------