如题
------解决方案--------------------------------------------------------
What's following statement??
You ate it up??
e.g.
rcs equ this byte
rcsw dw 0abh
Note:
rcs and rcsw represent the same address in the memory.
whilst you wanna use them, you can do something like this:
mov al,rcs ; means rcs is a type of byte.
or
mov ax,rcsw ; means rcsw is a type of word.
You can take advantage of it to avoid using operator PTR instead.
------解决方案--------------------------------------------------------
REMOTE_CODE_START 指向 _lpLoadLibrary ,便于定位以_lpLoadLibrary
开头的内存快。
------解决方案--------------------------------------------------------
you'll know when you need it.
Keep that in mind.
------解决方案--------------------------------------------------------
rcs equ this byte
rcsw dw 0abh
rcs 的偏移和 rcsw 的偏移 是一样的.
就是干这事的.