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.
23 lines
318 B
23 lines
318 B
|
8 years ago
|
#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();
|
||
|
|
}
|