mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator
synced 2025-07-07 06:52:15 +08:00
SDK 1.54
This commit is contained in:
20
dll/flat.cpp
20
dll/flat.cpp
@ -772,6 +772,26 @@ STEAMAPI_API void SteamAPI_ISteamFriends_ActivateGameOverlayInviteDialogConnectS
|
||||
return (get_steam_client()->steam_friends)->ActivateGameOverlayInviteDialogConnectString(pchConnectString);
|
||||
}
|
||||
|
||||
STEAMAPI_API SteamAPICall_t SteamAPI_ISteamFriends_RequestEquippedProfileItems( ISteamFriends* self, uint64_steamid steamID )
|
||||
{
|
||||
return (get_steam_client()->steam_friends)->RequestEquippedProfileItems(steamID);
|
||||
}
|
||||
|
||||
STEAMAPI_API bool SteamAPI_ISteamFriends_BHasEquippedProfileItem( ISteamFriends* self, uint64_steamid steamID, ECommunityProfileItemType itemType )
|
||||
{
|
||||
return (get_steam_client()->steam_friends)->BHasEquippedProfileItem(steamID, itemType);
|
||||
}
|
||||
|
||||
STEAMAPI_API const char * SteamAPI_ISteamFriends_GetProfileItemPropertyString( ISteamFriends* self, uint64_steamid steamID, ECommunityProfileItemType itemType, ECommunityProfileItemProperty prop )
|
||||
{
|
||||
return (get_steam_client()->steam_friends)->GetProfileItemPropertyString(steamID, itemType, prop);
|
||||
}
|
||||
|
||||
STEAMAPI_API uint32 SteamAPI_ISteamFriends_GetProfileItemPropertyUint( ISteamFriends* self, uint64_steamid steamID, ECommunityProfileItemType itemType, ECommunityProfileItemProperty prop )
|
||||
{
|
||||
return (get_steam_client()->steam_friends)->GetProfileItemPropertyUint(steamID, itemType, prop);
|
||||
}
|
||||
|
||||
STEAMAPI_API ISteamUtils *SteamAPI_SteamUtils_v010()
|
||||
{
|
||||
return get_steam_client()->GetISteamUtils(flat_hsteampipe(), "SteamUtils010");
|
||||
|
Reference in New Issue
Block a user