mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
e11dbd7428
git-svn-id: https://svn.eduke32.com/eduke32@1352 1a8010ca-5511-0410-912e-c29ae57300e0
22 lines
727 B
C
22 lines
727 B
C
#ifndef _MMULTI_UNSTABLE_H_
|
|
#define _MMULTI_UNSTABLE_H_
|
|
|
|
#include "compat.h"
|
|
|
|
void callcommit(void);
|
|
int32_t getcrc(char *buffer, int32_t bufleng);
|
|
void mmulti_initmultiplayers(int32_t argc, char **argv);
|
|
void mmulti_sendpacket(int32_t other, char *bufptr, int32_t messleng);
|
|
void mmulti_setpackettimeout(int32_t datimeoutcount, int32_t daresendagaincount);
|
|
void mmulti_uninitmultiplayers(void);
|
|
void mmulti_sendlogon(void);
|
|
void mmulti_sendlogoff(void);
|
|
int32_t mmulti_getoutputcirclesize(void);
|
|
int32_t mmulti_getpacket(int32_t *other, char *bufptr);
|
|
void mmulti_flushpackets(void);
|
|
void mmulti_generic(int32_t other, char *bufptr, int32_t messleng, int32_t command);
|
|
|
|
extern int32_t natfree;
|
|
|
|
#endif
|
|
|