├── .clang-tidy ├── .gitattributes ├── .github └── workflows │ ├── dev-build.yml │ ├── matrix-build.yml │ └── tag-release.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── SmokeAPI.iml ├── cmake.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── dictionaries │ └── project.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── runConfigurations │ ├── linux_exports_generator__32_.xml │ ├── linux_exports_generator__64_.xml │ ├── steamworks_downloader__prompt_.xml │ ├── steamworks_parser.xml │ ├── sync.xml │ └── windows_exports_generator__64_.xml ├── CMakeLists.txt ├── README.md ├── README.template.md ├── UNLICENSE.txt ├── res ├── README.txt ├── SmokeAPI.config.json ├── SmokeAPI.schema.json ├── extra_build_config.gen.h ├── interface_lookup.json └── steamworks │ ├── 100 │ ├── binaries │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 101 │ ├── binaries │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 102 │ ├── binaries │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 103 │ ├── binaries │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 104 │ ├── binaries │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 105 │ ├── binaries │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 106 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 107 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 108 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 109 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 110 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ └── steam_api.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 111 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 112 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 113 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 114 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 115 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 116 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 117 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 118 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 119 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 120 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 121 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 122 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 125 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 127 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 128 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 130 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 131 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 132 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 134 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 135 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 136 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 137 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 139 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 140 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 141 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 142 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 143 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 144 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 145 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 146 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 147 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ │ ├── steamnetworkingsockets.h │ │ ├── steamnetworkingtypes.h │ │ ├── steamps3params.h │ │ ├── steamtypes.h │ │ └── steamuniverse.h │ ├── 149 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 150 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 151 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 152 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 154 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 155 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 156 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 157 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 159 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 160 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ │ ├── isteamtimeline.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 │ ├── 161 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ │ ├── isteamtimeline.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 │ ├── 162 │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ │ ├── isteamtimeline.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 │ ├── 123a │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 126a │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 129a │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 133b │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 135a │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 138a │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 148a │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ ├── 153a │ ├── binaries │ │ ├── linux32 │ │ │ └── libsteam_api.so │ │ ├── linux64 │ │ │ └── libsteam_api.so │ │ ├── steam_api.dll │ │ └── steam_api64.dll │ └── headers │ │ └── steam │ │ ├── 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 │ └── 158a │ ├── binaries │ ├── linux32 │ │ └── libsteam_api.so │ ├── linux64 │ │ └── libsteam_api.so │ ├── steam_api.dll │ └── steam_api64.dll │ └── headers │ └── steam │ ├── 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 ├── src ├── generated │ ├── 32 │ │ ├── proxy_exports.cpp │ │ └── proxy_exports.hpp │ └── 64 │ │ ├── proxy_exports.cpp │ │ └── proxy_exports.hpp ├── main_linux.cpp ├── main_win.cpp ├── smoke_api │ ├── smoke_api.cpp │ └── smoke_api.hpp ├── steam_api │ ├── steam_client.cpp │ ├── steam_client.hpp │ ├── steam_interfaces.cpp │ ├── steam_interfaces.hpp │ └── virtuals │ │ ├── isteamapps.cpp │ │ ├── isteamclient.cpp │ │ ├── isteamgameserver.cpp │ │ ├── isteamhttp.cpp │ │ ├── isteaminventory.cpp │ │ ├── isteamuser.cpp │ │ └── steam_api_virtuals.hpp └── steamclient │ └── steamclient.cpp ├── static └── smoke_api │ ├── api.cpp │ ├── api.hpp │ ├── cache.cpp │ ├── cache.hpp │ ├── config.cpp │ ├── config.hpp │ ├── interfaces │ ├── steam_apps.cpp │ ├── steam_apps.hpp │ ├── steam_http.cpp │ ├── steam_http.hpp │ ├── steam_inventory.cpp │ ├── steam_inventory.hpp │ ├── steam_user.cpp │ └── steam_user.hpp │ ├── steamclient │ └── steamclient.hpp │ ├── types.cpp │ └── types.hpp ├── sync.json └── tools ├── CMakeLists.txt ├── README.md └── src ├── steamworks_downloader.cpp └── steamworks_parser.cpp /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dev-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.github/workflows/dev-build.yml -------------------------------------------------------------------------------- /.github/workflows/matrix-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.github/workflows/matrix-build.yml -------------------------------------------------------------------------------- /.github/workflows/tag-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.github/workflows/tag-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/SmokeAPI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/SmokeAPI.iml -------------------------------------------------------------------------------- /.idea/cmake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/cmake.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dictionaries/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/dictionaries/project.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/steamworks_parser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/runConfigurations/steamworks_parser.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/.idea/runConfigurations/sync.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/README.template.md -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /res/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/README.txt -------------------------------------------------------------------------------- /res/SmokeAPI.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/SmokeAPI.config.json -------------------------------------------------------------------------------- /res/SmokeAPI.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/SmokeAPI.schema.json -------------------------------------------------------------------------------- /res/extra_build_config.gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/extra_build_config.gen.h -------------------------------------------------------------------------------- /res/interface_lookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/interface_lookup.json -------------------------------------------------------------------------------- /res/steamworks/100/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/100/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/100/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/100/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/100/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/100/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/100/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/100/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/100/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/101/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/101/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/101/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/101/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/101/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/101/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/101/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/101/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/101/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/102/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/102/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/102/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/102/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/102/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/102/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/102/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/102/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/102/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/103/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/103/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/103/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/103/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/103/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/103/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/103/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/103/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/103/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/104/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/104/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/104/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/104/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/104/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/104/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/104/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/104/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/104/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/105/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/105/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/105/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/105/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/105/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/105/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/105/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/105/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/105/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/106/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/106/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/106/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/106/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/106/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/106/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/106/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/106/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/106/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/107/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/107/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/107/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/107/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/107/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/107/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/107/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/107/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/107/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/108/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/108/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/108/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/108/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/108/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/108/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/108/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/108/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/108/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/109/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/109/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/109/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/109/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/109/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/109/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/109/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/109/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/109/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/110/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/110/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/110/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/110/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/110/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/110/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/110/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/110/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/110/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/111/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/111/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/111/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/111/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/111/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/111/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/111/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/111/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/111/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/111/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/112/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/112/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/112/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/112/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/112/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/112/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/112/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/112/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/112/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/112/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/113/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/113/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/113/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/113/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/114/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/114/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/114/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/114/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/115/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/115/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/115/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/115/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/116/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/116/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/116/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/116/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/117/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/117/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/117/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/117/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/118/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/118/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/118/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/118/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/119/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/119/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/119/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/119/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/120/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/120/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/120/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/120/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/121/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/121/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/121/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/121/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/122/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/122/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/122/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/122/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/123a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/123a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/123a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/123a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/125/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/125/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/125/headers/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/125/headers/steam/steamuniverse.h -------------------------------------------------------------------------------- /res/steamworks/126a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/126a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/126a/headers/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/126a/headers/steam/steamuniverse.h -------------------------------------------------------------------------------- /res/steamworks/127/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/127/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/127/headers/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/127/headers/steam/steamuniverse.h -------------------------------------------------------------------------------- /res/steamworks/128/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/128/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/steamuniverse.h -------------------------------------------------------------------------------- /res/steamworks/128/headers/steam/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/128/headers/steam/steamvr.h -------------------------------------------------------------------------------- /res/steamworks/129a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/129a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamapplist.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/steamuniverse.h -------------------------------------------------------------------------------- /res/steamworks/129a/headers/steam/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/129a/headers/steam/steamvr.h -------------------------------------------------------------------------------- /res/steamworks/130/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/130/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamapplist.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/steamuniverse.h -------------------------------------------------------------------------------- /res/steamworks/130/headers/steam/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/130/headers/steam/steamvr.h -------------------------------------------------------------------------------- /res/steamworks/131/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/131/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamapplist.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamclient.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamfriends.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/steamhttpenums.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/steamps3params.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/steamuniverse.h -------------------------------------------------------------------------------- /res/steamworks/131/headers/steam/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/131/headers/steam/steamvr.h -------------------------------------------------------------------------------- /res/steamworks/132/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/132/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteamapplist.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/132/headers/steam/steamvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/132/headers/steam/steamvr.h -------------------------------------------------------------------------------- /res/steamworks/133b/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/133b/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/133b/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/133b/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/133b/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/133b/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/133b/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/133b/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/133b/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/133b/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/134/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/134/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/134/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/134/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/135/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/135/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/135/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/135a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/135a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/135a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/135a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/135a/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/135a/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/135a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/135a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/135a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/135a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/136/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/136/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/136/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/136/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/137/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/137/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/137/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/137/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/138a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/138a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/138a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/138a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/138a/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/138a/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/138a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/138a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/138a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/138a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/139/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/139/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/139/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/139/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/140/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/140/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/140/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/140/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/141/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/141/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/141/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/141/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/142/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/142/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/142/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/142/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/143/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/143/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/143/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/143/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/144/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/144/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/144/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/144/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/145/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/145/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/145/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/145/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/146/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/146/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/146/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/146/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/147/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/147/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/147/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/147/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/148a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/148a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/148a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/148a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/148a/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/148a/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/148a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/148a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/148a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/148a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/149/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/149/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/149/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/149/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/150/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/150/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/150/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/150/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/151/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/151/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/151/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/151/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/152/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/152/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/152/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/152/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/153a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/153a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/153a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/153a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/153a/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/153a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/153a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/153a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/153a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/154/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/154/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/154/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/154/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/155/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/155/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/155/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/155/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/156/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/156/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/156/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/156/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/157/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/157/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/157/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/157/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/158a/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/158a/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/158a/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/158a/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/158a/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/158a/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/158a/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/158a/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/158a/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/159/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/159/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/159/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/159/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/160/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/160/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/160/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/160/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/161/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/161/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/161/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/161/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /res/steamworks/162/binaries/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/binaries/steam_api.dll -------------------------------------------------------------------------------- /res/steamworks/162/binaries/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/binaries/steam_api64.dll -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteamapps.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteamhttp.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteaminput.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteammusic.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteamugc.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteamuser.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteamutils.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/isteamvideo.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/steam_api.h -------------------------------------------------------------------------------- /res/steamworks/162/headers/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/res/steamworks/162/headers/steam/steamtypes.h -------------------------------------------------------------------------------- /src/generated/32/proxy_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/generated/32/proxy_exports.cpp -------------------------------------------------------------------------------- /src/generated/32/proxy_exports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/generated/32/proxy_exports.hpp -------------------------------------------------------------------------------- /src/generated/64/proxy_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/generated/64/proxy_exports.cpp -------------------------------------------------------------------------------- /src/generated/64/proxy_exports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/generated/64/proxy_exports.hpp -------------------------------------------------------------------------------- /src/main_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/main_linux.cpp -------------------------------------------------------------------------------- /src/main_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/main_win.cpp -------------------------------------------------------------------------------- /src/smoke_api/smoke_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/smoke_api/smoke_api.cpp -------------------------------------------------------------------------------- /src/smoke_api/smoke_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/smoke_api/smoke_api.hpp -------------------------------------------------------------------------------- /src/steam_api/steam_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/steam_client.cpp -------------------------------------------------------------------------------- /src/steam_api/steam_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/steam_client.hpp -------------------------------------------------------------------------------- /src/steam_api/steam_interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/steam_interfaces.cpp -------------------------------------------------------------------------------- /src/steam_api/steam_interfaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/steam_interfaces.hpp -------------------------------------------------------------------------------- /src/steam_api/virtuals/isteamapps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/virtuals/isteamapps.cpp -------------------------------------------------------------------------------- /src/steam_api/virtuals/isteamclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/virtuals/isteamclient.cpp -------------------------------------------------------------------------------- /src/steam_api/virtuals/isteamgameserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/virtuals/isteamgameserver.cpp -------------------------------------------------------------------------------- /src/steam_api/virtuals/isteamhttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/virtuals/isteamhttp.cpp -------------------------------------------------------------------------------- /src/steam_api/virtuals/isteaminventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/virtuals/isteaminventory.cpp -------------------------------------------------------------------------------- /src/steam_api/virtuals/isteamuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/virtuals/isteamuser.cpp -------------------------------------------------------------------------------- /src/steam_api/virtuals/steam_api_virtuals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steam_api/virtuals/steam_api_virtuals.hpp -------------------------------------------------------------------------------- /src/steamclient/steamclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/src/steamclient/steamclient.cpp -------------------------------------------------------------------------------- /static/smoke_api/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/api.cpp -------------------------------------------------------------------------------- /static/smoke_api/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/api.hpp -------------------------------------------------------------------------------- /static/smoke_api/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/cache.cpp -------------------------------------------------------------------------------- /static/smoke_api/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/cache.hpp -------------------------------------------------------------------------------- /static/smoke_api/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/config.cpp -------------------------------------------------------------------------------- /static/smoke_api/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/config.hpp -------------------------------------------------------------------------------- /static/smoke_api/interfaces/steam_apps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/interfaces/steam_apps.cpp -------------------------------------------------------------------------------- /static/smoke_api/interfaces/steam_apps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/interfaces/steam_apps.hpp -------------------------------------------------------------------------------- /static/smoke_api/interfaces/steam_http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/interfaces/steam_http.cpp -------------------------------------------------------------------------------- /static/smoke_api/interfaces/steam_http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/interfaces/steam_http.hpp -------------------------------------------------------------------------------- /static/smoke_api/interfaces/steam_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/interfaces/steam_user.cpp -------------------------------------------------------------------------------- /static/smoke_api/interfaces/steam_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/interfaces/steam_user.hpp -------------------------------------------------------------------------------- /static/smoke_api/steamclient/steamclient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/steamclient/steamclient.hpp -------------------------------------------------------------------------------- /static/smoke_api/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/types.cpp -------------------------------------------------------------------------------- /static/smoke_api/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/static/smoke_api/types.hpp -------------------------------------------------------------------------------- /sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/sync.json -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/src/steamworks_downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/tools/src/steamworks_downloader.cpp -------------------------------------------------------------------------------- /tools/src/steamworks_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acidicoala/SmokeAPI/HEAD/tools/src/steamworks_parser.cpp --------------------------------------------------------------------------------