Checks if a variable is a DllStruct type.
IsDllStruct ( variable )
| variable | The variable/expression to check. |
| Success: | Returns 1. |
| Failure: | Returns 0 if expression is not DllStruct type as return by DllStructCreate. |
Local $struct = DllStructCreate("char[256]")
Local $x = IsDllStruct($struct)