blob: 00cde9aca32fb75a7223ce356685c6cf8c5ce5a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Function to call ShellExecute on the .exe version of the current executable
// intended for a .com/.exe pair named the same thing to enable a hybrid
// console/gui app
//
//=============================================================================
#ifndef RUN_EXE_H
#define RUN_EXE_H
#if COMPILER_MSVC
#pragma once
#endif
void RunExe();
#endif // RUN_EXE_H
|