Vérifie si une variable est de type DllStruct.
IsDllStruct ( variable )
DllStructCreate, VarGetType
#include <MsgBoxConstants.au3> Local $tStruct = DllStructCreate("wchar[256]") If IsDllStruct($tStruct) Then MsgBox($MB_SYSTEMMODAL, "", "La variable est une structure dll.") Else MsgBox($MB_SYSTEMMODAL, "", "La variable n'est pas une structure dll.") EndIf