mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-29 16:02:53 -05:00
Added ISteamHTTP
This commit is contained in:
@@ -2,19 +2,21 @@
|
||||
|
||||
#include "smoke_api/types.hpp"
|
||||
|
||||
// TODO: Make them all noexcept
|
||||
|
||||
namespace smoke_api::steam_apps {
|
||||
bool IsDlcUnlocked(
|
||||
const std::string& function_name,
|
||||
AppId_t app_id,
|
||||
AppId_t dlc_id,
|
||||
const std::function<bool()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
int GetDLCCount(
|
||||
const std::string& function_name,
|
||||
AppId_t app_id,
|
||||
const std::function<int()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool GetDLCDataByIndex(
|
||||
const std::string& function_name,
|
||||
@@ -25,6 +27,6 @@ namespace smoke_api::steam_apps {
|
||||
char* pchName,
|
||||
int cchNameBufferSize,
|
||||
const std::function<bool()>& original_function,
|
||||
const std::function<bool(AppId_t)>& is_originally_unlocked
|
||||
);
|
||||
const std::function<bool()>& is_originally_unlocked
|
||||
) noexcept;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user