mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
0e19f74c16
and 'void' where needed, prefixed all functions, typedefs and global vars with 'Network' and organized all externals nicely.
12 lines
317 B
C
12 lines
317 B
C
#ifndef NETWORK_LAN_H
|
|
#define NETWORK_LAN_H
|
|
|
|
void NetworkUDPInitialize(void);
|
|
bool NetworkUDPListen(uint32 host, uint16 port);
|
|
void NetworkUDPReceive(void);
|
|
void NetworkUDPSearchGame(void);
|
|
void NetworkUDPQueryServer(const byte* host, unsigned short port);
|
|
void NetworkUDPAdvertise(void);
|
|
|
|
#endif /* NETWORK_LAN_H */
|