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.
22 lines
318 B
22 lines
318 B
#include "../types.h" |
|
#include "stubs.h" |
|
|
|
void __cdecl dthread_start() |
|
{ |
|
DUMMY(); |
|
} |
|
|
|
void __cdecl dthread_cleanup() |
|
{ |
|
DUMMY(); |
|
} |
|
|
|
void __fastcall dthread_send_delta(int pnum, char cmd, void *pbSrc, int dwLen) |
|
{ |
|
DUMMY(); |
|
} |
|
|
|
void __fastcall dthread_remove_player(int pnum) |
|
{ |
|
UNIMPLEMENTED(); |
|
}
|
|
|