You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
394 B
16 lines
394 B
//HEADER_GOES_HERE |
|
#ifndef __DTHREAD_H__ |
|
#define __DTHREAD_H__ |
|
|
|
extern unsigned int glpDThreadId; |
|
extern BOOLEAN dthread_running; |
|
|
|
void dthread_remove_player(int pnum); |
|
void dthread_send_delta(int pnum, char cmd, void *pbSrc, int dwLen); |
|
void dthread_start(); |
|
unsigned int __stdcall dthread_handler(void *unused); |
|
void dthread_cleanup(); |
|
|
|
/* data */ |
|
|
|
#endif /* __DTHREAD_H__ */
|
|
|