blob: 64617d24e04854a76e1060d5e68b1e1d8b8984f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef CL_CHECK_PROCESS_H
#define CL_CHECK_PROCESS_H
#ifdef _WIN32
#pragma once
#endif
#include "platform.h"
#define CHECK_PROCESS_UNSUPPORTED -1
int CheckOtherInstancesRunning( void );
#endif // CL_CHECK_PROCESS_H
|