first i wanna thank all the experts here for their hard work , and for releasing their work to the community for free i really appreciate that.
i wanna ask how to use the recv and send , to send and recieve packets , like for example in this thread:

there is a send code and recieve code:
send:
PHP Code:
__declspec(naked) int __cdecl SendPacket (BYTE Header , LPCSTR Format , ... ){
__asm{
push ebp
mov ebp, esp
sub esp, 18h
}
__asm{JMP SendBack};
}
(i've read articles about api hooking and i'm a good c++ programmer , but i still cant get this)
thanks in advance






