码迷,mamicode.com
首页 > 编程语言 > 详细

创建struct类型的数组

时间:2014-10-16 19:32:12      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   log   amp   ad   

在autoit中,如何创建类似这样的数组呢?如下方式,数组的element只是存储的地址相邻,所以我们可以这样做

$tagMYSTRUCT = "int code; char msg[10];"

$mystruct = ArrayStruct($tagMYSTRUCT, 4)
$fourth_element = getElement($mystruct, 3, $tagMYSTRUCT) ; $fourth_element is an alias of ‘$mystruct[3]‘
DllStructSetData($fourth_element, "code", 3);

DllCall(...., "struct*", $mystruct)


Func ArrayStruct($tagStruct, $numElements)
    $sizeOfMyStruct = DllStructGetSize(DllStructCreate($tagMYSTRUCT)) // assumes end padding is included
    $numElements = 4
    $bytesNeeded = $numElements * $sizeOfMyStruct
    return DllStructCreate("byte[" & $bytesNeeded & "]")
EndFunc


Func GetElement($Struct, $Element, $tagSTRUCT)
   return DllStructCreate($tagSTRUCT, DllStructGetPtr($Struct) + $Element * DllStructGetSize(DllStructCreate($tagStruct)))
EndFunc

 

创建struct类型的数组

标签:style   blog   color   ar   sp   div   log   amp   ad   

原文地址:http://www.cnblogs.com/jenney-qiu/p/4029124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!