函数参考


IsDllStruct

检查一个变量是否是 Dll 数据结构类型.

IsDllStruct ( 变量 )

参数

变量 需要检查的 变量/表达式.

返回值

成功: 返回 1.
失败: 返回 0,如果表达式不是一个由 DllStructCreate 返回的 Dll 数据结构类型.

注意/说明

None.

相关

DllStructCreate, VarGetType

示例/演示


Local $tStruct = DllStructCreate("wchar[256]")
If IsDllStruct($tStruct) Then
    MsgBox(4096, "", "The variable is a dll structure")
Else
    MsgBox(4096, "", "The variable is not a dll structure")
EndIf