检查一个变量是否是 Dll 数据结构类型.
IsDllStruct ( 变量 )
变量 | 需要检查的 变量/表达式. |
成功: | 返回 1. |
失败: | 返回 0,如果表达式不是一个由 DllStructCreate 返回的 Dll 数据结构类型. |
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