0
I am studying a Node, and in this process I decided to help in the study migrate a system in c/c++ to Node, but I am not familiar with c/c++ and I appeared a piece of code that I am not able to understand very well what it does, could 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
}
}
Will you convert this to Node? Good luck, you will need a lot.
– Maniero