This commit is contained in:
acidicoala
2022-12-31 18:32:12 +03:00
parent 1ba84753aa
commit 0d1ae0fd29
16 changed files with 332 additions and 199 deletions

View File

@@ -19,7 +19,6 @@ VIRTUAL(bool) IClientInventory_GetResultItems(
uint32_t * punOutItemsArraySize // 1st pass: ptr to out array size, 2nd pass: ptr to 0
)
) {
return steam_inventory::GetResultItems(
__func__, resultHandle, pOutItemsArray, punOutItemsArraySize,
[&]() {

View File

@@ -3,6 +3,6 @@
using namespace smoke_api;
VIRTUAL(bool) IClientUser_IsSubscribedApp(PARAMS(AppId_t app_id)) { // NOLINT(misc-unused-parameters)
VIRTUAL(bool) IClientUser_BIsSubscribedApp(PARAMS(AppId_t app_id)) { // NOLINT(misc-unused-parameters)
return steam_apps::IsDlcUnlocked(__func__, 0, app_id);
}