IsDllStruct

From AutoIt Wiki

Jump to: navigation, search

Checks if a variable is a DllStruct type. Adapted from AutoIt docs.

Contents

Syntax

$chk = IsDllStruct(expr)

Parameters

exprThe 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)

Related Functions

DllStructCreate

Personal tools