mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-29 16:02:53 -05:00
Added ISteamHTTP
This commit is contained in:
@@ -7,7 +7,7 @@ namespace smoke_api::steam_inventory {
|
||||
const std::string& function_name,
|
||||
SteamInventoryResult_t resultHandle,
|
||||
const std::function<EResult()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool GetResultItems(
|
||||
const std::string& function_name,
|
||||
@@ -16,7 +16,7 @@ namespace smoke_api::steam_inventory {
|
||||
uint32_t* punOutItemsArraySize,
|
||||
const std::function<bool()>& original_function,
|
||||
const std::function<bool(SteamItemDef_t*, uint32_t*)>& get_item_definition_ids
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool GetResultItemProperty(
|
||||
const std::string& function_name,
|
||||
@@ -26,13 +26,13 @@ namespace smoke_api::steam_inventory {
|
||||
const char* pchValueBuffer,
|
||||
const uint32_t* punValueBufferSizeOut,
|
||||
const std::function<bool()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool GetAllItems(
|
||||
const std::string& function_name,
|
||||
const SteamInventoryResult_t* pResultHandle,
|
||||
const std::function<bool()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool GetItemsByID(
|
||||
const std::string& function_name,
|
||||
@@ -40,7 +40,7 @@ namespace smoke_api::steam_inventory {
|
||||
const SteamItemInstanceID_t* pInstanceIDs,
|
||||
uint32_t unCountInstanceIDs,
|
||||
const std::function<bool()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool SerializeResult(
|
||||
const std::string& function_name,
|
||||
@@ -48,19 +48,19 @@ namespace smoke_api::steam_inventory {
|
||||
void* pOutBuffer,
|
||||
uint32_t* punOutBufferSize,
|
||||
const std::function<bool()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool GetItemDefinitionIDs(
|
||||
const std::string& function_name,
|
||||
const SteamItemDef_t* pItemDefIDs,
|
||||
uint32_t* punItemDefIDsArraySize,
|
||||
const std::function<bool()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
|
||||
bool CheckResultSteamID(
|
||||
const std::string& function_name,
|
||||
SteamInventoryResult_t resultHandle,
|
||||
CSteamID steamIDExpected,
|
||||
const std::function<bool()>& original_function
|
||||
);
|
||||
) noexcept;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user