How do I convert this bit of code originally written for MASM32 into code for GoASM?
mov eax,[eax].NMHDR.code
Thanks,
-Shooter
mov eax, [eax + NMHDR.code]
Thanks, Ramon. I thought it was that, but my proggy is still acting strange, so I thought maybe I was doing that bit of code incorrectly. (le sigh.)
-Shooter
You are welcome!
Ramon