This commit is contained in:
acidicoala
2022-12-30 02:50:27 +03:00
parent 636f9186a3
commit d6828e3bfb
24 changed files with 97 additions and 74 deletions

View File

@@ -0,0 +1,22 @@
#include <steam_functions/steam_functions.hpp>
using namespace smoke_api;
namespace steam_apps {
bool IsDlcUnlocked(const String& function_name, AppId_t app_id, AppId_t dlc_id);
int GetDLCCount(const String& function_name, AppId_t app_id, const std::function<int()>& original_function);
bool GetDLCDataByIndex(
const String& function_name,
AppId_t app_id,
int iDLC,
AppId_t* pDlcId,
bool* pbAvailable,
char* pchName,
int cchNameBufferSize,
const std::function<bool()>& original_function
);
}