Files
@ r5312:ffd375effb01
Branch filter:
Location: cpp/openttd-patchpack/source/network_gui.h - annotation
r5312:ffd375effb01
751 B
text/x-c
(svn r7468) -Codechange: [win32] Add some comments to MB/WIDE_TO_WIDE/MB_[BUFFER] macros and
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
r4512:0882483119bc r4512:0882483119bc r4512:0882483119bc r4512:0882483119bc r4512:0882483119bc r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4512:0882483119bc r4830:b1b68e7108e7 r4888:9c9be36545fd r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4830:b1b68e7108e7 r4512:0882483119bc r4666:2a2c50111c72 | /* $Id$ */
#ifndef NETWORK_GUI_H
#define NETWORK_GUI_H
#ifdef ENABLE_NETWORK
#include "network_data.h"
void ShowNetworkNeedPassword(NetworkPasswordType npt);
void ShowNetworkGiveMoneyWindow(byte player); // PlayerID
void ShowNetworkChatQueryWindow(DestType type, byte dest);
void ShowJoinStatusWindowAfterJoin(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 ShowJoinStatusWindowAfterJoin(void) {}
static inline void ShowNetworkGameWindow(void) {}
#endif /* ENABLE_NETWORK */
#endif /* NETWORK_GUI_H */
|