OpenTTD
network_gui.h
Go to the documentation of this file.
1 /* $Id: network_gui.h 18809 2010-01-15 16:41:15Z rubidium $ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8  */
9 
12 #ifndef NETWORK_GUI_H
13 #define NETWORK_GUI_H
14 
15 #include "../company_type.h"
16 #include "../economy_type.h"
17 #include "../window_type.h"
18 #include "network_type.h"
19 
20 #ifdef ENABLE_NETWORK
21 
22 void ShowNetworkNeedPassword(NetworkPasswordType npt);
23 void ShowNetworkGiveMoneyWindow(CompanyID company);
24 void ShowNetworkChatQueryWindow(DestType type, int dest);
25 void ShowJoinStatusWindow();
26 void ShowNetworkGameWindow();
27 void ShowClientList();
28 void ShowNetworkCompanyPasswordWindow(Window *parent);
29 
30 
38  uint16 performance;
39  bool use_password;
41 };
42 
44 
45 #else /* ENABLE_NETWORK */
46 /* Network function stubs when networking is disabled */
47 
48 static inline void ShowNetworkChatQueryWindow(byte desttype, int dest) {}
49 static inline void ShowClientList() {}
50 static inline void ShowNetworkGameWindow() {}
51 static inline void ShowNetworkCompanyPasswordWindow(Window *parent) {}
52 
53 #endif /* ENABLE_NETWORK */
54 
55 #endif /* NETWORK_GUI_H */