Function Reference


IsDllStruct

Checks if a variable is a DllStruct type.

IsDllStruct ( variable )

Parameters

variable The variable/expression to check.

Return Value

Success: Returns 1.
Failure: Returns 0 if expression is not DllStruct type as return by DllStructCreate.

Remarks

None.

Related

DllStructCreate, VarGetType

Example


Local $struct = DllStructCreate("char[256]")
Local $x = IsDllStruct($struct)