mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-22 07:06:01 +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 */
|