2008-11-11 13:24:05 +00:00
|
|
|
#ifndef _MMULTI_UNSTABLE_H_
|
|
|
|
#define _MMULTI_UNSTABLE_H_
|
|
|
|
|
|
|
|
void callcommit(void);
|
|
|
|
void initcrc(void);
|
2008-11-11 14:48:59 +00:00
|
|
|
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);
|
2008-11-11 13:24:05 +00:00
|
|
|
void uninitmultiplayers(void);
|
|
|
|
void sendlogon(void);
|
|
|
|
void sendlogoff(void);
|
|
|
|
int getoutputcirclesize(void);
|
2008-11-11 14:48:59 +00:00
|
|
|
void setsocket(int newsocket);
|
|
|
|
int getpacket(int *other, char *bufptr);
|
2008-11-11 13:24:05 +00:00
|
|
|
void flushpackets(void);
|
2008-11-11 14:48:59 +00:00
|
|
|
void genericmultifunction(int other, char *bufptr, int messleng, int command);
|
|
|
|
|
|
|
|
extern int natfree;
|
2008-11-11 13:24:05 +00:00
|
|
|
|
|
|
|
#endif
|