samp-re/packet.c

16 lines
228 B
C
Raw Permalink Normal View History

2020-04-04 05:10:14 +02:00
/* 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
}
}