You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
994 B
26 lines
994 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: used by all .exe's that run under steam and out,
|
||
|
// so they can be launched indirectly by steam and launch steam themselves
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef STEAMAPPSTARTUP_H
|
||
|
#define STEAMAPPSTARTUP_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose: Call this first thing at startup
|
||
|
// Works out if the app is a steam app that is being ran outside of steam,
|
||
|
// and if so, launches steam and tells it to run us as a steam app
|
||
|
//
|
||
|
// if it returns true, then exit
|
||
|
// if it ruturns false, then continue with normal startup
|
||
|
//-----------------------------------------------------------------------------
|
||
|
bool ShouldLaunchAppViaSteam(const char *cmdLine, const char *steamFilesystemDllName, const char *stdioFilesystemDllName);
|
||
|
|
||
|
|
||
|
#endif // STEAMAPPSTARTUP_H
|