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

 

Example


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