函数参考


DllStructGetPtr

返回 数据结构(struct) 或者 数据结构(struct)的一个元素的指针.

DllStructGetPtr ( 数据结构 [,元素] )

参数

数据结构 由 DllStructCreate 返回的数据结构(struct).
元素 [可选参数] 你想要访问的数据结构(struct)某元素的指针, 起始于 1 或者由 DllStructCreate 函数定义的元素名.

返回值

成功: 返回数据结构(struct)的指针.
失败: 返回 0.
@Error: 0 = 没有错误.
1 = DllStructCreate 函数返回的数据结构(struct)不正确.
2 = 元素值超出范围 .

注意/说明

在 DllCall 内使用.

相关

DllCall, DllStructCreate

示例/演示


;示例1
;获取窗口句柄并使用 WinGetPos 获取窗口矩形
Local $hwnd = WinGetHandle("")
Local $coor = WinGetPos($hwnd)

;建立数据结构
Local $rect = DllStructCreate("int;int;int;int")

;构成 DllCall
DllCall("user32.dll", "int", "GetWindowRect", _
        "hwnd", $hwnd, _
        "ptr",DllStructGetPtr($rect)) ; 使用 DllStructGetPtr 后调用 DllCall

;获取返回的矩形
Local $l = DllStructGetData($rect, 1)
Local $t = DllStructGetData($rect, 2)
Local $r = DllStructGetData($rect, 3)
Local $b = DllStructGetData($rect, 4)

;释放数据结构
$rect = 0

;显示 WinGetPos 的结果和返回的矩形
MsgBox(4096,"Larry 测试 :)","WinGetPos(): (" & $coor[0] & "," & $coor[1] & _
        ") (" & $coor[2] + $coor[0] & "," & $coor[3] + $coor[1] & ")" & @CRLF & _
        "GetWindowRect(): (" & $l & "," & $t & ") (" & $r & "," & $b & ")")

;示例2
; DllStructGetPtr 参考项目
Local $a = DllStructCreate("int")
If @error Then
    MsgBox(4096,"","DllStructCreate 错误" & @error);
    Exit
EndIf

$b = DllStructCreate("uint", DllStructGetPtr($a, 1))
If @error Then
    MsgBox(4096,"","DllStructCreate 错误 " & @error);
    Exit
EndIf

Local $c = DllStructCreate("float", DllStructGetPtr($a, 1))
If @error Then
    MsgBox(4096,"","DllStructCreate 错误 " & @error);
    Exit
EndIf

;设置数据
DllStructSetData($a, 1, -1)

;=========================================================
;   显示相同数据的不同类型
;=========================================================
MsgBox(4096, "DllStruct", _
        "int: " & DllStructGetData($a, 1) & @CRLF & _
        "uint: " & DllStructGetData($b, 1) & @CRLF & _
        "float: " & DllStructGetData($c, 1) & @CRLF & _
        "")

; 释放分配的内存
$a = 0