mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-22 15:11:54 +00:00
18 lines
392 B
C
18 lines
392 B
C
/* $Id$ */
|
|
|
|
#ifndef NETWORK_UDP_H
|
|
#define NETWORK_UDP_H
|
|
|
|
#ifdef ENABLE_NETWORK
|
|
|
|
void NetworkUDPInitialize(void);
|
|
void NetworkUDPSearchGame(void);
|
|
void NetworkUDPQueryMasterServer(void);
|
|
NetworkGameList *NetworkUDPQueryServer(const char* host, unsigned short port);
|
|
void NetworkUDPAdvertise(void);
|
|
void NetworkUDPRemoveAdvertise(void);
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
#endif /* NETWORK_UDP_H */
|