mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-28 15:32:51 -05:00
25 lines
624 B
C++
25 lines
624 B
C++
// Not included in project due atm due to lack of usage
|
|
|
|
#pragma once
|
|
|
|
#include "smoke_api/smoke_api.hpp"
|
|
#include "smoke_api/types.hpp"
|
|
|
|
using ESteamAPIInitResult = uint32_t;
|
|
using SteamErrMsg = char[1024];
|
|
|
|
DLL_EXPORT(bool) SteamAPI_Init();
|
|
|
|
DLL_EXPORT(bool) SteamAPI_InitSafe();
|
|
|
|
DLL_EXPORT(ESteamAPIInitResult) SteamAPI_InitFlat(const SteamErrMsg* pOutErrMsg);
|
|
|
|
DLL_EXPORT(ESteamAPIInitResult) SteamInternal_SteamAPI_Init(
|
|
const char* pszInternalCheckInterfaceVersions,
|
|
const SteamErrMsg* pOutErrMsg
|
|
);
|
|
|
|
DLL_EXPORT(bool) SteamAPI_RestartAppIfNecessary(AppId_t unOwnAppID);
|
|
|
|
DLL_EXPORT(void) SteamAPI_Shutdown();
|