mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
0e19f74c16
and 'void' where needed, prefixed all functions, typedefs and global vars with 'Network' and organized all externals nicely.
9 lines
271 B
C
9 lines
271 B
C
#ifndef NETWORK_GAMELIST_H
|
|
#define NETWORK_GAMELIST_H
|
|
|
|
void NetworkGameListClear(void);
|
|
NetworkGameList *NetworkGameListAddItem(uint32 ip, uint16 port);
|
|
void NetworkGameListAddQueriedItem(const NetworkGameInfo *info, bool server_online);
|
|
|
|
#endif /* NETWORK_GAMELIST_H */
|