| Revision: | 583 |
| Committed: | Sat Jan 22 16:28:52 2011 UTC (14 years, 10 months ago) by gumby |
| Content type: | text/x-chdr |
| File size: | 432 byte(s) |
| Log Message: | last update before big rewrite |
| # | Content |
|---|---|
| 1 | #ifndef FLATLINE_SERVER_H |
| 2 | #define FLATLINE_SERVER_H |
| 3 | |
| 4 | #define TOO_MANY_CONNECTIONS -1 |
| 5 | #include "Flatline.h" |
| 6 | #include "winsock.h" |
| 7 | |
| 8 | |
| 9 | extern uint16_t max_connections; |
| 10 | player_info* FLrServer_AddPlayer(int ip, char* name, bool is_server, bool is_bot); |
| 11 | int FLsPublic_Event( const unsigned int eventIndex, const int * args); |
| 12 | |
| 13 | void FLrServer_Initialize(); |
| 14 | void FLsPingAll(); |
| 15 | void FLsUpdateName( int index, char* name ); |
| 16 | #endif |