WIN32汇编获取应用程序句柄
程序员文章站
2022-04-29 11:30:16
...
getmodulehandle
使用方法
invoke getmodulehandle,lpmodulename
lpmodulename 是一个字符串指针,它指向的字符含有模块名称。
如想得到USER32.dll句柄
可以
szuserdll db 'user32.dll',0
invoke getmodulehandle,addr szuserdll
.if eax
mov huserdllhandle,eax
.endif
如果想得到本程序的句柄
invoke getmodulehandle,null
mov hinstance,eax