~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/network/network_func.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman
  • Date: 2009-06-09 21:46:28 UTC
  • mfrom: (1.1.7 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090609214628-6z5uodi6178z050l
[ Matthijs Kooijman ]
* New upstream release.
* Link against libicu to enable right-to-left language support. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: network_func.h 15775 2009-03-19 23:50:54Z rubidium $ */
 
1
/* $Id: network_func.h 16273 2009-05-10 21:33:55Z rubidium $ */
2
2
 
3
3
/** @file network_func.h Network functions used by other parts of OpenTTD. */
4
4
 
28
28
bool NetworkCompanyHasClients(CompanyID company);
29
29
bool NetworkChangeCompanyPassword(byte argc, char *argv[]);
30
30
void NetworkReboot();
31
 
void NetworkDisconnect();
 
31
void NetworkDisconnect(bool blocking = false);
32
32
void NetworkGameLoop();
33
33
void NetworkUDPGameLoop();
34
34
void NetworkUDPCloseAll();
72
72
void NetworkServerBanIP(const char *banip);
73
73
 
74
74
void NetworkInitChatMessage();
75
 
void CDECL NetworkAddChatMessage(TextColour colour, uint8 duration, const char *message, ...);
 
75
void CDECL NetworkAddChatMessage(TextColour colour, uint8 duration, const char *message, ...) WARN_FORMAT(3, 4);
76
76
void NetworkUndrawChatMessage();
77
77
void NetworkChatMessageDailyLoop();
78
78