Files
SmokeAPI/src/steam_impl/steam_apps.hpp
2023-01-06 05:18:13 +03:00

31 lines
690 B
C++

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