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