git-svn-id: https://svn.eduke32.com/eduke32@1127 1a8010ca-5511-0410-912e-c29ae57300e0

This commit is contained in:
terminx 2008-11-11 14:58:02 +00:00
parent 7aa2930514
commit 5469140ff7

View file

@ -0,0 +1,23 @@
#ifndef _MMULTI_STABLE_H_
#define _MMULTI_STABLE_H_
#define MAXMULTIPLAYERS 16
void callcommit(void);
void initcrc(void);
long getcrc(char *buffer, int bufleng);
void initmultiplayers(int argc, char **argv);
void sendpacket(long other, char *bufptr, long messleng);
void setpackettimeout(long datimeoutcount, long 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(long other, char *bufptr, long messleng, long command);
extern int natfree;
#endif