diff options
author | truelight <truelight@openttd.org> | 2004-12-19 10:17:26 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2004-12-19 10:17:26 +0000 |
commit | 0e19f74c16e9d663b6dd61f96828857c0e6a29da (patch) | |
tree | af44976063392f71dcb2b8e4d2311d79578d0684 /network_server.h | |
parent | bb5dca016ddbd7d21373c052cefa96f894e1e2fc (diff) | |
download | openttd-0e19f74c16e9d663b6dd61f96828857c0e6a29da.tar.xz |
(svn r1168) -Cleanup: [Network] Cleaned the network code a bit. Added 'const'
and 'void' where needed, prefixed all functions, typedefs and global
vars with 'Network' and organized all externals nicely.
Diffstat (limited to 'network_server.h')
-rw-r--r-- | network_server.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/network_server.h b/network_server.h index 45979ff89..1cfa59702 100644 --- a/network_server.h +++ b/network_server.h @@ -4,17 +4,17 @@ #ifdef ENABLE_NETWORK DEF_SERVER_SEND_COMMAND(PACKET_SERVER_MAP); -DEF_SERVER_SEND_COMMAND_PARAM(PACKET_SERVER_ERROR_QUIT)(ClientState *cs, uint16 client_index, NetworkErrorCode errorno); -DEF_SERVER_SEND_COMMAND_PARAM(PACKET_SERVER_ERROR)(ClientState *cs, NetworkErrorCode error); +DEF_SERVER_SEND_COMMAND_PARAM(PACKET_SERVER_ERROR_QUIT)(NetworkClientState *cs, uint16 client_index, NetworkErrorCode errorno); +DEF_SERVER_SEND_COMMAND_PARAM(PACKET_SERVER_ERROR)(NetworkClientState *cs, NetworkErrorCode error); DEF_SERVER_SEND_COMMAND(PACKET_SERVER_SHUTDOWN); DEF_SERVER_SEND_COMMAND(PACKET_SERVER_NEWGAME); bool NetworkFindName(char new_name[NETWORK_NAME_LENGTH]); void NetworkServer_HandleChat(NetworkAction action, DestType desttype, int dest, const char *msg, byte from_index); -bool NetworkServer_ReadPackets(ClientState *cs); -void NetworkServer_Tick(); -void NetworkServerMonthlyLoop(); +bool NetworkServer_ReadPackets(NetworkClientState *cs); +void NetworkServer_Tick(void); +void NetworkServerMonthlyLoop(void); #endif /* ENABLE_NETWORK */ |