mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2024-11-11 19:10:59 +00:00
15 lines
337 B
C++
15 lines
337 B
C++
|
#include <smoke_api/smoke_api.hpp>
|
||
|
#include <steam_functions/steam_functions.hpp>
|
||
|
|
||
|
using namespace smoke_api;
|
||
|
|
||
|
namespace steam_user {
|
||
|
|
||
|
EUserHasLicenseForAppResult UserHasLicenseForApp(
|
||
|
const String& function_name,
|
||
|
AppId_t appID,
|
||
|
const std::function<EUserHasLicenseForAppResult()>& original_function
|
||
|
);
|
||
|
|
||
|
}
|