mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
f8fc87db78
git-svn-id: https://svn.eduke32.com/eduke32@6965 1a8010ca-5511-0410-912e-c29ae57300e0
31 lines
988 B
C
31 lines
988 B
C
// mmulti.h
|
|
|
|
#ifndef mmulti_h_
|
|
#define mmulti_h_
|
|
|
|
#define MAXMULTIPLAYERS 16
|
|
|
|
extern int myconnectindex, numplayers;
|
|
extern int connecthead, connectpoint2[MAXMULTIPLAYERS];
|
|
extern unsigned char syncstate;
|
|
|
|
#if 0
|
|
int initmultiplayersparms(int argc, char const * const * argv);
|
|
int initmultiplayerscycle(void);
|
|
void initmultiplayers(int argc, char const * const * argv, unsigned char damultioption, unsigned char dacomrateoption, unsigned char dapriority);
|
|
#endif
|
|
|
|
void setpackettimeout(int datimeoutcount, int daresendagaincount);
|
|
void uninitmultiplayers(void);
|
|
void sendlogon(void);
|
|
void sendlogoff(void);
|
|
int getoutputcirclesize(void);
|
|
void setsocket(int newsocket);
|
|
void sendpacket(int other, unsigned char *bufptr, int messleng);
|
|
int getpacket(int *other, unsigned char *bufptr);
|
|
void flushpackets(void);
|
|
void genericmultifunction(int other, unsigned char *bufptr, int messleng, int command);
|
|
int isvalidipaddress(const char *st);
|
|
|
|
#endif // mmulti_h_
|
|
|