summaryrefslogtreecommitdiff
path: root/serverbrowser/pch_serverbrowser.h
blob: 575382e4df37b8f130ef4e74dfeb37d3d68b93e6 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================

#include <winlite.h>
#undef CreateDialog
#ifdef WIN32
#include <direct.h>
#include <io.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>

#include "vstdlib/pch_vstdlib.h"
#include "tier0/memdbgoff.h"
#include "vgui_controls/pch_vgui_controls.h"
#include "vgui_controls/Frame.h"
#include "tier0/memdbgon.h"

#include "tier3/tier3.h"

// steam3 API
//#include "steam/steam_querypackets.h"
#include "steam/steam_api.h"
#include "steam/isteamuser.h"
#include "steam/isteammatchmaking.h"
#include "steam/isteamfriends.h"

#include "ServerBrowser/IServerBrowser.h"
#include "IVguiModule.h"
#include "vgui_controls/Controls.h"

#include "netadr.h"
#include "filesystem.h"
#include "proto_oob.h"
#include "ModList.h"
#include "IRunGameEngine.h"

#include "OfflineMode.h"

// serverbrowser files

#include "igamelist.h"
#include "ServerListCompare.h"
#include "ServerBrowser.h"
#include "VACBannedConnRefusedDialog.h"
#include "DialogGameInfo.h"
#include "ServerContextMenu.h"
#include "DialogServerPassword.h"
#include "DialogAddServer.h"

// game list
#include "BaseGamesPage.h"
#include "BlacklistedServers.h"
#include "InternetGames.h"
#include "FavoriteGames.h"
#include "SpectateGames.h"
#include "LanGames.h"
#include "FriendsGames.h"
#include "HistoryGames.h"
#include "SpectateGames.h"
#include "CustomGames.h"
#include "ServerBrowserDialog.h"
#include "QuickListPanel.h"
#include "vgui_controls/PanelListPanel.h"

#include "replay/ienginereplay.h"

extern bool GameSupportsReplay();
extern bool IsReplayServer( gameserveritem_t &server );

#pragma warning( disable: 4355 )  //  warning C4355: 'this' : used in base member initializer list

#if defined( STEAM )
#define IsSteam()	true
#else
#define IsSteam()	false
#endif

using namespace vgui;