mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
27 lines
668 B
C
27 lines
668 B
C
/* $Id$ */
|
|
|
|
#ifndef NETWORK_GUI_H
|
|
#define NETWORK_GUI_H
|
|
|
|
#ifdef ENABLE_NETWORK
|
|
|
|
#include "network_data.h"
|
|
|
|
void ShowNetworkNeedPassword(NetworkPasswordType npt);
|
|
void ShowNetworkGiveMoneyWindow(PlayerID player); // PlayerID
|
|
void ShowNetworkChatQueryWindow(DestType type, byte dest);
|
|
void ShowJoinStatusWindow();
|
|
void ShowNetworkGameWindow();
|
|
void ShowClientList();
|
|
|
|
#else /* ENABLE_NETWORK */
|
|
/* Network function stubs when networking is disabled */
|
|
|
|
static inline void ShowNetworkChatQueryWindow(byte desttype, byte dest) {}
|
|
static inline void ShowClientList() {}
|
|
static inline void ShowNetworkGameWindow() {}
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
#endif /* NETWORK_GUI_H */
|