src/network/network_gui.h
author rubidium
Sun, 11 May 2008 14:09:38 +0000
changeset 10501 10f2642f41dc
parent 10429 1b99254f9607
child 10563 76819f7c2dc2
permissions -rw-r--r--
(svn r13044) -Fix: deleting an already deleted window.
/* $Id$ */

/** @file network_gui.h GUIs related to networking. */

#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, int dest);
void ShowJoinStatusWindow();
void ShowNetworkGameWindow();
void ShowClientList();
void ShowNetworkCompanyPasswordWindow();

#else /* ENABLE_NETWORK */
/* Network function stubs when networking is disabled */

static inline void ShowNetworkChatQueryWindow(byte desttype, int dest) {}
static inline void ShowClientList() {}
static inline void ShowNetworkGameWindow() {}
static inline void ShowNetworkCompanyPasswordWindow() {}

#endif /* ENABLE_NETWORK */

#endif /* NETWORK_GUI_H */