mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
2e18686daa
git-svn-id: https://svn.eduke32.com/eduke32@1175 1a8010ca-5511-0410-912e-c29ae57300e0
22 lines
644 B
C
22 lines
644 B
C
#ifndef _MMULTI_UNSTABLE_H_
|
|
#define _MMULTI_UNSTABLE_H_
|
|
|
|
void callcommit(void);
|
|
void initcrc(void);
|
|
int getcrc(char *buffer, int bufleng);
|
|
void initmultiplayers(int argc, char **argv);
|
|
void sendpacket(int other, char *bufptr, int messleng);
|
|
void setpackettimeout(int datimeoutcount, int daresendagaincount);
|
|
void uninitmultiplayers(void);
|
|
void sendlogon(void);
|
|
void sendlogoff(void);
|
|
int getoutputcirclesize(void);
|
|
void setsocket(int newsocket);
|
|
int getpacket(int *other, char *bufptr);
|
|
void flushpackets(void);
|
|
void genericmultifunction(int other, char *bufptr, int messleng, int command);
|
|
|
|
extern int natfree;
|
|
|
|
#endif
|
|
|