Please don't blame me for being lazy. I know nothing of Assembly and I need to know what the following codes mean/does. The codes look simple to some one experienced I guess.
Could anyone help me? It would save me from reading some assembly books. Thanks a lot.
.386
.model flat
option prologue:none
option epilogue:none
option dotname
.code
align DWORD
DllMain proc stdcall public, instance:DWORD, reason:DWORD, reserved:DWORD
mov eax, 1
ret 12
DllMain endp
align DWORD
DynamicCallFunc proc stdcall public, funcptr:DWORD
pop ecx
pop edx
push ecx
jmp edx
DynamicCallFunc endp
end

New Topic/Question
Reply


MultiQuote







|