Read32Bit 读取32位数值
🎯功能
根据地址读取32位数值
📜语法
结果 = Plugin.Memory.Read32Bit(窗口句柄, 内存地址)
📥参数
参数 | 数据类型 | 解释 |
---|---|---|
窗口句柄 | 长整型数 | 要读取的窗口句柄 |
内存地址 | 长整型数 | 要读取的内存地址 |
📤返回
字符串
, 返回读取到的32位数值
💡示例
hwnd=Plugin.Window.Find(0,"扫雷")
Dim x, y
//x, y中分别保存当前扫雷的长与宽的格子数量
x=Plugin.Memory.Read32Bit(hwnd,&h1005334)
y=Plugin.Memory.Read32Bit(hwnd,&h1005338)
MsgBox "扫雷的长 与宽的格子数量为:" &x& " * " &y&"格"
📘备注
无