I am studying a Node, and in this process I decided to help in the study to migrate a system in c / c ++ to node, however I am not familiar with c / c ++ and I have a code snippet that I can not understand very well he does, could you help me?
__declspec(naked) void NKD_AddMessage()
{
__asm
{
PUSH [EBP + 0xC]
PUSH [EBP + 0x8]
CALL HKD_AddMessage
ADD ESP, 0x8
PUSH EAX
MOV EAX, 0x41F8C0
CALL EAX
POP EAX
MOV DWORD PTR SS:[EBP + 0x8], EAX
MOV DWORD PTR SS:[EBP - 0x108], EAX
RETN
}
}