blob: e8ff539d434de3d2e9080a594b6ed675a5571dc4 (
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:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#if !defined( PROFILE_H )
#define PROFILE_H
#ifdef _WIN32
#pragma once
#endif
void Host_ReadConfiguration();
void Host_WriteConfiguration( const char *filename = NULL, bool bAllVars = false );
#endif // PROFILE_H
|