Mercurial > hg > openttd
view src/network/network_gui.h @ 5587:c44c070c5032 draft
(svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Wed, 10 Jan 2007 18:56:51 +0000 |
parents | eabf4b86aed6 |
children | 57363e064324 |
line wrap: on
line source
/* $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); void ShowNetworkGameWindow(void); void ShowClientList(void); #else /* ENABLE_NETWORK */ /* Network function stubs when networking is disabled */ static inline void ShowNetworkChatQueryWindow(byte desttype, byte dest) {} static inline void ShowClientList(void) {} static inline void ShowNetworkGameWindow(void) {} #endif /* ENABLE_NETWORK */ #endif /* NETWORK_GUI_H */