16 lines
228 B
C
16 lines
228 B
C
|
|
||
|
/* vim: set filetype=c ts=8 noexpandtab: */
|
||
|
|
||
|
#include "common.h"
|
||
|
#include "rakpeer.h"
|
||
|
#include "packet.h"
|
||
|
|
||
|
__declspec(naked)
|
||
|
struct CPacket* __cdecl Packet__AllocPacket(int bitSize)
|
||
|
{
|
||
|
_asm {
|
||
|
mov eax, 0x44FDE0
|
||
|
jmp eax
|
||
|
}
|
||
|
}
|