RE: ASM Help
- Posted by stabmaster_ at HOTMAIL.COM Mar 23, 2001
- 463 views
Just a quick qusetion: You did remember to push the parameters in opposite order, right? e.g: PUSH param3 PUSH param2 PUSH param1 MOV EBX, my_callback CALL NEAR EBX wich is the same as the following MASM code INVOKE my_callback, param1,param2, param3