samp-re/packet.c
2020-04-04 05:10:23 +02:00

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
}
}