blob: 522cf105ec03fbcad40e0ab6589db732da3025fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef VGUI_ASKCONNECTPANEL_H
#define VGUI_ASKCONNECTPANEL_H
#ifdef _WIN32
#pragma once
#endif
void SetupDefaultAskConnectAcceptKey();
vgui::Panel* CreateAskConnectPanel( vgui::VPANEL parent );
void ShowAskConnectPanel( const char *pConnectToHostName, float flDuration );
void HideAskConnectPanel();
bool IsAskConnectPanelActive( char *pHostName, int maxHostNameBytes );
#endif // VGUI_ASKCONNECTPANEL_H
|