mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2025-12-05 21:15:39 -05:00
31 lines
776 B
C++
31 lines
776 B
C++
#pragma once
|
|
|
|
#include "smoke_api/types.hpp"
|
|
|
|
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,
|
|
AppId_t app_id,
|
|
int iDLC,
|
|
AppId_t* pDlcId,
|
|
bool* pbAvailable,
|
|
char* pchName,
|
|
int cchNameBufferSize,
|
|
const std::function<bool()>& original_function,
|
|
const std::function<bool()>& is_originally_unlocked
|
|
) noexcept;
|
|
}
|