├── .gitignore ├── Open Steamworks.sln ├── OpenSteamAPI ├── lib │ ├── Linux32 │ │ └── README.md │ ├── Linux64 │ │ └── README.md │ ├── OSX32 │ │ └── README.md │ ├── OSX64 │ │ └── README.md │ ├── Win32 │ │ └── README.md │ └── Win64 │ │ └── README.md └── src │ ├── CCallbackMgr.cpp │ ├── CCallbackMgr.h │ ├── ClientWrap.cpp │ ├── Interface_OSW.cpp │ ├── Interface_OSW.h │ ├── Makefile │ ├── OSXPathHelper.h │ ├── OSXPathHelper.mm │ ├── OpenSteamAPI.vcxproj │ ├── OpenSteamAPI.vcxproj.filters │ ├── POSIXLibrary.h │ └── Win32Library.h ├── OpenSteamworks ├── Interfaces │ ├── Client │ │ ├── IClientAppManager.h │ │ ├── IClientApps.h │ │ ├── IClientAudio.h │ │ ├── IClientBilling.h │ │ ├── IClientBluetoothManager.h │ │ ├── IClientCompat.h │ │ ├── IClientConfigStore.h │ │ ├── IClientContentServer.h │ │ ├── IClientDepotBuilder.h │ │ ├── IClientDeviceAuth.h │ │ ├── IClientEngine.h │ │ ├── IClientFriends.h │ │ ├── IClientGameCoordinator.h │ │ ├── IClientGameServer.h │ │ ├── IClientGameServerStats.h │ │ ├── IClientGameStats.h │ │ ├── IClientHTMLSurface.h │ │ ├── IClientHTTP.h │ │ ├── IClientInventory.h │ │ ├── IClientMasterServerUpdater.h │ │ ├── IClientMatchmaking.h │ │ ├── IClientMatchmakingServers.h │ │ ├── IClientMusic.h │ │ ├── IClientNetworkDeviceManager.h │ │ ├── IClientNetworking.h │ │ ├── IClientNetworkingSocketsSerialized.h │ │ ├── IClientParentalSettings.h │ │ ├── IClientProductBuilder.h │ │ ├── IClientRemoteClientManager.h │ │ ├── IClientRemoteStorage.h │ │ ├── IClientScreenshots.h │ │ ├── IClientShader.h │ │ ├── IClientSharedConnection.h │ │ ├── IClientShortcuts.h │ │ ├── IClientStorageDeviceManager.h │ │ ├── IClientStreamClient.h │ │ ├── IClientStreamLauncher.h │ │ ├── IClientSystemManager.h │ │ ├── IClientUGC.h │ │ ├── IClientUnifiedMessages.h │ │ ├── IClientUser.h │ │ ├── IClientUserStats.h │ │ ├── IClientUtils.h │ │ └── IClientVideo.h │ └── Steam │ │ ├── ISteam2Bridge │ │ ├── ISteam2Bridge001.h │ │ └── ISteam2Bridge002.h │ │ ├── ISteamAppList │ │ └── ISteamAppList001.h │ │ ├── ISteamAppTicket │ │ └── ISteamAppTicket001.h │ │ ├── ISteamApps │ │ ├── ISteamApps001.h │ │ ├── ISteamApps002.h │ │ ├── ISteamApps003.h │ │ ├── ISteamApps004.h │ │ ├── ISteamApps005.h │ │ ├── ISteamApps006.h │ │ ├── ISteamApps007.h │ │ └── ISteamApps008.h │ │ ├── ISteamBilling │ │ ├── ISteamBilling001.h │ │ └── ISteamBilling002.h │ │ ├── ISteamClient │ │ ├── ISteamClient006.h │ │ ├── ISteamClient007.h │ │ ├── ISteamClient008.h │ │ ├── ISteamClient009.h │ │ ├── ISteamClient010.h │ │ ├── ISteamClient011.h │ │ ├── ISteamClient012.h │ │ ├── ISteamClient013.h │ │ ├── ISteamClient014.h │ │ ├── ISteamClient015.h │ │ ├── ISteamClient016.h │ │ ├── ISteamClient017.h │ │ ├── ISteamClient018.h │ │ └── ISteamClient019.h │ │ ├── ISteamContentServer │ │ ├── ISteamContentServer001.h │ │ └── ISteamContentServer002.h │ │ ├── ISteamController │ │ ├── ISteamController001.h │ │ ├── ISteamController003.h │ │ ├── ISteamController004.h │ │ ├── ISteamController005.h │ │ └── ISteamController006.h │ │ ├── ISteamFriends │ │ ├── ISteamFriends001.h │ │ ├── ISteamFriends002.h │ │ ├── ISteamFriends003.h │ │ ├── ISteamFriends004.h │ │ ├── ISteamFriends005.h │ │ ├── ISteamFriends006.h │ │ ├── ISteamFriends007.h │ │ ├── ISteamFriends008.h │ │ ├── ISteamFriends009.h │ │ ├── ISteamFriends010.h │ │ ├── ISteamFriends011.h │ │ ├── ISteamFriends012.h │ │ ├── ISteamFriends013.h │ │ ├── ISteamFriends014.h │ │ └── ISteamFriends015.h │ │ ├── ISteamGameCoordinator │ │ └── ISteamGameCoordinator001.h │ │ ├── ISteamGameServer │ │ ├── ISteamGameServer002.h │ │ ├── ISteamGameServer003.h │ │ ├── ISteamGameServer004.h │ │ ├── ISteamGameServer005.h │ │ ├── ISteamGameServer006.h │ │ ├── ISteamGameServer007.h │ │ ├── ISteamGameServer008.h │ │ ├── ISteamGameServer009.h │ │ ├── ISteamGameServer010.h │ │ ├── ISteamGameServer011.h │ │ └── ISteamGameServer012.h │ │ ├── ISteamGameServerStats │ │ └── ISteamGameServerStats001.h │ │ ├── ISteamGameStats │ │ └── ISteamGameStats001.h │ │ ├── ISteamHTMLSurface │ │ ├── ISteamHTMLSurface001.h │ │ ├── ISteamHTMLSurface002.h │ │ └── ISteamHTMLSurface003.h │ │ ├── ISteamHTTP │ │ ├── ISteamHTTP001.h │ │ └── ISteamHTTP002.h │ │ ├── ISteamInventory │ │ ├── ISteamInventory001.h │ │ └── ISteamInventory002.h │ │ ├── ISteamMasterServerUpdater │ │ └── ISteamMasterServerUpdater001.h │ │ ├── ISteamMatchmaking │ │ ├── ISteamMatchmaking001.h │ │ ├── ISteamMatchmaking002.h │ │ ├── ISteamMatchmaking003.h │ │ ├── ISteamMatchmaking004.h │ │ ├── ISteamMatchmaking005.h │ │ ├── ISteamMatchmaking006.h │ │ ├── ISteamMatchmaking007.h │ │ ├── ISteamMatchmaking008.h │ │ └── ISteamMatchmaking009.h │ │ ├── ISteamMatchmakingServers │ │ ├── ISteamMatchmakingServers001.h │ │ └── ISteamMatchmakingServers002.h │ │ ├── ISteamMusic │ │ └── ISteamMusic001.h │ │ ├── ISteamMusicRemote │ │ └── ISteamMusicRemote001.h │ │ ├── ISteamNetworking │ │ ├── ISteamNetworking001.h │ │ ├── ISteamNetworking002.h │ │ ├── ISteamNetworking003.h │ │ ├── ISteamNetworking004.h │ │ └── ISteamNetworking005.h │ │ ├── ISteamOAuth │ │ └── ISteamOAuth001.h │ │ ├── ISteamParentalSettings │ │ └── ISteamParentalSettings001.h │ │ ├── ISteamRemotePlay │ │ └── ISteamRemotePlay001.h │ │ ├── ISteamRemoteStorage │ │ ├── ISteamRemoteStorage001.h │ │ ├── ISteamRemoteStorage002.h │ │ ├── ISteamRemoteStorage003.h │ │ ├── ISteamRemoteStorage004.h │ │ ├── ISteamRemoteStorage005.h │ │ ├── ISteamRemoteStorage006.h │ │ ├── ISteamRemoteStorage007.h │ │ ├── ISteamRemoteStorage008.h │ │ ├── ISteamRemoteStorage009.h │ │ ├── ISteamRemoteStorage010.h │ │ ├── ISteamRemoteStorage011.h │ │ ├── ISteamRemoteStorage012.h │ │ ├── ISteamRemoteStorage013.h │ │ └── ISteamRemoteStorage014.h │ │ ├── ISteamScreenshots │ │ ├── ISteamScreenshots001.h │ │ ├── ISteamScreenshots002.h │ │ └── ISteamScreenshots003.h │ │ ├── ISteamStreamLauncher │ │ └── ISteamStreamLauncher001.h │ │ ├── ISteamUGC │ │ ├── ISteamUGC001.h │ │ ├── ISteamUGC002.h │ │ ├── ISteamUGC003.h │ │ ├── ISteamUGC008.h │ │ ├── ISteamUGC009.h │ │ └── ISteamUGC010.h │ │ ├── ISteamUnifiedMessages │ │ └── ISteamUnifiedMessages001.h │ │ ├── ISteamUser │ │ ├── ISteamUser004.h │ │ ├── ISteamUser005.h │ │ ├── ISteamUser006.h │ │ ├── ISteamUser007.h │ │ ├── ISteamUser008.h │ │ ├── ISteamUser009.h │ │ ├── ISteamUser010.h │ │ ├── ISteamUser011.h │ │ ├── ISteamUser012.h │ │ ├── ISteamUser013.h │ │ ├── ISteamUser014.h │ │ ├── ISteamUser015.h │ │ ├── ISteamUser016.h │ │ ├── ISteamUser017.h │ │ ├── ISteamUser018.h │ │ ├── ISteamUser019.h │ │ └── ISteamUser020.h │ │ ├── ISteamUserStats │ │ ├── ISteamUserStats001.h │ │ ├── ISteamUserStats002.h │ │ ├── ISteamUserStats003.h │ │ ├── ISteamUserStats004.h │ │ ├── ISteamUserStats005.h │ │ ├── ISteamUserStats006.h │ │ ├── ISteamUserStats007.h │ │ ├── ISteamUserStats008.h │ │ ├── ISteamUserStats009.h │ │ ├── ISteamUserStats010.h │ │ └── ISteamUserStats011.h │ │ ├── ISteamUtils │ │ ├── ISteamUtils001.h │ │ ├── ISteamUtils002.h │ │ ├── ISteamUtils003.h │ │ ├── ISteamUtils004.h │ │ ├── ISteamUtils005.h │ │ ├── ISteamUtils006.h │ │ ├── ISteamUtils007.h │ │ ├── ISteamUtils008.h │ │ └── ISteamUtils009.h │ │ └── ISteamVideo │ │ ├── ISteamVideo001.h │ │ └── ISteamVideo002.h ├── Open Steamworks.vcxproj ├── Open Steamworks.vcxproj.filters ├── OpenAPI.h ├── Steamclient.h ├── Steamworks.h └── Types │ ├── AppTicketCommon.h │ ├── AppsCommon.h │ ├── BillingCommon.h │ ├── BridgeCommon.h │ ├── CCallback.h │ ├── CGameID.h │ ├── CSteamAPIContext.h │ ├── CSteamID.h │ ├── ClientCommon.h │ ├── ContentServerCommon.h │ ├── ControllerCommon.h │ ├── ECurrencyCode.h │ ├── EResult.h │ ├── ESteamAppUpdateStatsQueryType.h │ ├── ESteamBufferMethod.h │ ├── ESteamError.h │ ├── ESteamFindFilter.h │ ├── ESteamNotify.h │ ├── ESteamPaymentCardType.h │ ├── ESteamSeekMethod.h │ ├── ESteamServerType.h │ ├── ESteamSubscriptionBillingInfoType.h │ ├── ESteamSubscriptionStatus.h │ ├── EVoiceResult.h │ ├── FriendGameInfo.h │ ├── FriendsCommon.h │ ├── GameCoordinatorCommon.h │ ├── GameServerCommon.h │ ├── GameServerStatsCommon.h │ ├── GameStatsCommon.h │ ├── HTMLSurfaceCommon.h │ ├── HTTPCommon.h │ ├── InventoryCommon.h │ ├── MasterServerUpdaterCommon.h │ ├── MatchMakingKeyValuePair.h │ ├── MatchmakingCommon.h │ ├── MatchmakingServersCommon.h │ ├── MusicCommon.h │ ├── NetworkingCommon.h │ ├── OAuthCommon.h │ ├── ParentalSettingsCommon.h │ ├── RemoteClientCommon.h │ ├── RemoteStorageCommon.h │ ├── ScreenshotsCommon.h │ ├── SharedConnectionCommon.h │ ├── SteamSalt.h │ ├── SteamTypes.h │ ├── StreamLauncherCommon.h │ ├── TSteamApp.h │ ├── TSteamAppDependencyInfo.h │ ├── TSteamAppLaunchOption.h │ ├── TSteamAppStats.h │ ├── TSteamAppVersion.h │ ├── TSteamDiscountQualifier.h │ ├── TSteamElemInfo.h │ ├── TSteamError.h │ ├── TSteamExternalBillingInfo.h │ ├── TSteamGlobalUserID.h │ ├── TSteamOfflineStatus.h │ ├── TSteamPaymentCardInfo.h │ ├── TSteamPaymentCardReceiptInfo.h │ ├── TSteamPrepurchaseInfo.h │ ├── TSteamPrepurchaseReceiptInfo.h │ ├── TSteamProgress.h │ ├── TSteamSplitLocalUserID.h │ ├── TSteamSubscription.h │ ├── TSteamSubscriptionBillingInfo.h │ ├── TSteamSubscriptionDiscount.h │ ├── TSteamSubscriptionReceipt.h │ ├── TSteamSubscriptionStats.h │ ├── TSteamUpdateStats.h │ ├── UGCCommon.h │ ├── UnifiedMessagesCommon.h │ ├── UserCommon.h │ ├── UserStatsCommon.h │ ├── UtilsCommon.h │ ├── VideoCommon.h │ ├── gameserveritem.h │ └── servernetadr.h ├── README.md └── Test Platform ├── Makefile ├── Test Platform.vcxproj ├── Test Platform.vcxproj.filters └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/.gitignore -------------------------------------------------------------------------------- /Open Steamworks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/Open Steamworks.sln -------------------------------------------------------------------------------- /OpenSteamAPI/lib/Linux32/README.md: -------------------------------------------------------------------------------- 1 | # Here be dragons -------------------------------------------------------------------------------- /OpenSteamAPI/lib/Linux64/README.md: -------------------------------------------------------------------------------- 1 | # Here be dragons -------------------------------------------------------------------------------- /OpenSteamAPI/lib/OSX32/README.md: -------------------------------------------------------------------------------- 1 | # Here be dragons -------------------------------------------------------------------------------- /OpenSteamAPI/lib/OSX64/README.md: -------------------------------------------------------------------------------- 1 | # Here be dragons -------------------------------------------------------------------------------- /OpenSteamAPI/lib/Win32/README.md: -------------------------------------------------------------------------------- 1 | # Here be dragons -------------------------------------------------------------------------------- /OpenSteamAPI/lib/Win64/README.md: -------------------------------------------------------------------------------- 1 | # Here be dragons -------------------------------------------------------------------------------- /OpenSteamAPI/src/CCallbackMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/CCallbackMgr.cpp -------------------------------------------------------------------------------- /OpenSteamAPI/src/CCallbackMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/CCallbackMgr.h -------------------------------------------------------------------------------- /OpenSteamAPI/src/ClientWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/ClientWrap.cpp -------------------------------------------------------------------------------- /OpenSteamAPI/src/Interface_OSW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/Interface_OSW.cpp -------------------------------------------------------------------------------- /OpenSteamAPI/src/Interface_OSW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/Interface_OSW.h -------------------------------------------------------------------------------- /OpenSteamAPI/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/Makefile -------------------------------------------------------------------------------- /OpenSteamAPI/src/OSXPathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/OSXPathHelper.h -------------------------------------------------------------------------------- /OpenSteamAPI/src/OSXPathHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/OSXPathHelper.mm -------------------------------------------------------------------------------- /OpenSteamAPI/src/OpenSteamAPI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/OpenSteamAPI.vcxproj -------------------------------------------------------------------------------- /OpenSteamAPI/src/OpenSteamAPI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/OpenSteamAPI.vcxproj.filters -------------------------------------------------------------------------------- /OpenSteamAPI/src/POSIXLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/POSIXLibrary.h -------------------------------------------------------------------------------- /OpenSteamAPI/src/Win32Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamAPI/src/Win32Library.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientAppManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientAppManager.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientApps.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientAudio.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientBilling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientBilling.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientBluetoothManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientBluetoothManager.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientCompat.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientConfigStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientConfigStore.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientContentServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientContentServer.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientDepotBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientDepotBuilder.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientDeviceAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientDeviceAuth.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientEngine.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientFriends.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientGameCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientGameCoordinator.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientGameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientGameServer.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientGameServerStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientGameServerStats.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientGameStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientGameStats.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientHTMLSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientHTMLSurface.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientHTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientHTTP.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientInventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientInventory.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientMasterServerUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientMasterServerUpdater.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientMatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientMatchmaking.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientMatchmakingServers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientMatchmakingServers.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientMusic.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientNetworkDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientNetworkDeviceManager.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientNetworking.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientNetworkingSocketsSerialized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientNetworkingSocketsSerialized.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientParentalSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientParentalSettings.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientProductBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientProductBuilder.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientRemoteClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientRemoteClientManager.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientRemoteStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientRemoteStorage.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientScreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientScreenshots.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientShader.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientSharedConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientSharedConnection.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientShortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientShortcuts.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientStorageDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientStorageDeviceManager.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientStreamClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientStreamClient.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientStreamLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientStreamLauncher.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientSystemManager.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientUGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientUGC.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientUnifiedMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientUnifiedMessages.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientUser.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientUserStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientUserStats.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientUtils.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Client/IClientVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Client/IClientVideo.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteam2Bridge/ISteam2Bridge001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteam2Bridge/ISteam2Bridge001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteam2Bridge/ISteam2Bridge002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteam2Bridge/ISteam2Bridge002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamAppList/ISteamAppList001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamAppList/ISteamAppList001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamAppTicket/ISteamAppTicket001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamAppTicket/ISteamAppTicket001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamApps/ISteamApps008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamBilling/ISteamBilling001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamBilling/ISteamBilling001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamBilling/ISteamBilling002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamBilling/ISteamBilling002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient010.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient011.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient012.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient013.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient014.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient014.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient015.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient016.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient017.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient018.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient018.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient019.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamClient/ISteamClient019.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamContentServer/ISteamContentServer001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamContentServer/ISteamContentServer001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamContentServer/ISteamContentServer002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamContentServer/ISteamContentServer002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamController/ISteamController006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends010.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends011.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends012.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends013.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends014.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends014.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamFriends/ISteamFriends015.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameCoordinator/ISteamGameCoordinator001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameCoordinator/ISteamGameCoordinator001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer010.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer011.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServer/ISteamGameServer012.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameServerStats/ISteamGameServerStats001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameServerStats/ISteamGameServerStats001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamGameStats/ISteamGameStats001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamGameStats/ISteamGameStats001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamHTMLSurface/ISteamHTMLSurface001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamHTMLSurface/ISteamHTMLSurface001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamHTMLSurface/ISteamHTMLSurface002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamHTMLSurface/ISteamHTMLSurface002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamHTMLSurface/ISteamHTMLSurface003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamHTMLSurface/ISteamHTMLSurface003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamHTTP/ISteamHTTP001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamHTTP/ISteamHTTP001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamHTTP/ISteamHTTP002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamHTTP/ISteamHTTP002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamInventory/ISteamInventory001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamInventory/ISteamInventory001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamInventory/ISteamInventory002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamInventory/ISteamInventory002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMasterServerUpdater/ISteamMasterServerUpdater001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMasterServerUpdater/ISteamMasterServerUpdater001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmaking/ISteamMatchmaking009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmakingServers/ISteamMatchmakingServers001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmakingServers/ISteamMatchmakingServers001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMatchmakingServers/ISteamMatchmakingServers002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMatchmakingServers/ISteamMatchmakingServers002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMusic/ISteamMusic001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMusic/ISteamMusic001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamMusicRemote/ISteamMusicRemote001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamMusicRemote/ISteamMusicRemote001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamNetworking/ISteamNetworking005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamOAuth/ISteamOAuth001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamOAuth/ISteamOAuth001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamParentalSettings/ISteamParentalSettings001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamParentalSettings/ISteamParentalSettings001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemotePlay/ISteamRemotePlay001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemotePlay/ISteamRemotePlay001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage010.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage011.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage012.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage013.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage014.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamRemoteStorage/ISteamRemoteStorage014.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamScreenshots/ISteamScreenshots001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamScreenshots/ISteamScreenshots001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamScreenshots/ISteamScreenshots002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamScreenshots/ISteamScreenshots002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamScreenshots/ISteamScreenshots003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamScreenshots/ISteamScreenshots003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamStreamLauncher/ISteamStreamLauncher001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamStreamLauncher/ISteamStreamLauncher001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUGC/ISteamUGC010.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUnifiedMessages/ISteamUnifiedMessages001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUnifiedMessages/ISteamUnifiedMessages001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser010.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser011.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser012.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser013.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser014.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser014.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser015.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser016.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser017.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser018.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser018.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser019.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser019.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUser/ISteamUser020.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats010.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUserStats/ISteamUserStats011.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils002.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils003.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils004.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils005.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils006.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils007.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils008.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamUtils/ISteamUtils009.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamVideo/ISteamVideo001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamVideo/ISteamVideo001.h -------------------------------------------------------------------------------- /OpenSteamworks/Interfaces/Steam/ISteamVideo/ISteamVideo002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Interfaces/Steam/ISteamVideo/ISteamVideo002.h -------------------------------------------------------------------------------- /OpenSteamworks/Open Steamworks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Open Steamworks.vcxproj -------------------------------------------------------------------------------- /OpenSteamworks/Open Steamworks.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Open Steamworks.vcxproj.filters -------------------------------------------------------------------------------- /OpenSteamworks/OpenAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/OpenAPI.h -------------------------------------------------------------------------------- /OpenSteamworks/Steamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Steamclient.h -------------------------------------------------------------------------------- /OpenSteamworks/Steamworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Steamworks.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/AppTicketCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/AppTicketCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/AppsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/AppsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/BillingCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/BillingCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/BridgeCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/BridgeCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/CCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/CCallback.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/CGameID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/CGameID.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/CSteamAPIContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/CSteamAPIContext.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/CSteamID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/CSteamID.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ClientCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ClientCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ContentServerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ContentServerCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ControllerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ControllerCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ECurrencyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ECurrencyCode.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/EResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/EResult.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamAppUpdateStatsQueryType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamAppUpdateStatsQueryType.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamBufferMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamBufferMethod.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamError.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamFindFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamFindFilter.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamNotify.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamPaymentCardType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamPaymentCardType.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamSeekMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamSeekMethod.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamServerType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamServerType.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamSubscriptionBillingInfoType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamSubscriptionBillingInfoType.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ESteamSubscriptionStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ESteamSubscriptionStatus.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/EVoiceResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/EVoiceResult.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/FriendGameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/FriendGameInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/FriendsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/FriendsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/GameCoordinatorCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/GameCoordinatorCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/GameServerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/GameServerCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/GameServerStatsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/GameServerStatsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/GameStatsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/GameStatsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/HTMLSurfaceCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/HTMLSurfaceCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/HTTPCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/HTTPCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/InventoryCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/InventoryCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/MasterServerUpdaterCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/MasterServerUpdaterCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/MatchMakingKeyValuePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/MatchMakingKeyValuePair.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/MatchmakingCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/MatchmakingCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/MatchmakingServersCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/MatchmakingServersCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/MusicCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/MusicCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/NetworkingCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/NetworkingCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/OAuthCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/OAuthCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ParentalSettingsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ParentalSettingsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/RemoteClientCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/RemoteClientCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/RemoteStorageCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/RemoteStorageCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/ScreenshotsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/ScreenshotsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/SharedConnectionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/SharedConnectionCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/SteamSalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/SteamSalt.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/SteamTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/SteamTypes.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/StreamLauncherCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/StreamLauncherCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamApp.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamAppDependencyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamAppDependencyInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamAppLaunchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamAppLaunchOption.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamAppStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamAppStats.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamAppVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamAppVersion.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamDiscountQualifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamDiscountQualifier.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamElemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamElemInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamError.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamExternalBillingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamExternalBillingInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamGlobalUserID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamGlobalUserID.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamOfflineStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamOfflineStatus.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamPaymentCardInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamPaymentCardInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamPaymentCardReceiptInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamPaymentCardReceiptInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamPrepurchaseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamPrepurchaseInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamPrepurchaseReceiptInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamPrepurchaseReceiptInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamProgress.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamSplitLocalUserID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamSplitLocalUserID.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamSubscription.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamSubscriptionBillingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamSubscriptionBillingInfo.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamSubscriptionDiscount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamSubscriptionDiscount.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamSubscriptionReceipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamSubscriptionReceipt.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamSubscriptionStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamSubscriptionStats.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/TSteamUpdateStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/TSteamUpdateStats.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/UGCCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/UGCCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/UnifiedMessagesCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/UnifiedMessagesCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/UserCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/UserCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/UserStatsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/UserStatsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/UtilsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/UtilsCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/VideoCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/VideoCommon.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/gameserveritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/gameserveritem.h -------------------------------------------------------------------------------- /OpenSteamworks/Types/servernetadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/OpenSteamworks/Types/servernetadr.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/README.md -------------------------------------------------------------------------------- /Test Platform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/Test Platform/Makefile -------------------------------------------------------------------------------- /Test Platform/Test Platform.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/Test Platform/Test Platform.vcxproj -------------------------------------------------------------------------------- /Test Platform/Test Platform.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/Test Platform/Test Platform.vcxproj.filters -------------------------------------------------------------------------------- /Test Platform/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4dEngi/open-steamworks/HEAD/Test Platform/main.cpp --------------------------------------------------------------------------------