IsDllStruct
From AutoIt Wiki
Checks if a variable is a DllStruct type. Adapted from AutoIt docs.
Contents |
Syntax
$chk = IsDllStruct(expr)
Parameters
| expr | The expression to check. |
Return Value
Success: Returns 1.
Failure: Returns 0 if expression is not DllStruct type as returned by DllStructCreate.
Example
$struct = DllStructCreate("char[256]")
$x = IsDllStruct($struct)