Funktionreferenz


IsDllStruct

Beschreibung anzeigen in

Prüft, ob eine Variable vom Typ DllStruct ist.

IsDllStruct ( variable )

Parameter

variable Zu prüfende(r) Variable/Ausdruck.

Rückgabewert

Erfolg: 1.
Fehler: 0, wenn der Ausdruck nicht vom Typ DllStruct, wie von DllStructCreate zurückgegeben, ist.

Bemerkungen

Siehe Sprachreferenz - Datentypen für eine detaillierte Beschreibung.

Verwandte Funktionen

DllStructCreate, VarGetType

Beispiel

#include <MsgBoxConstants.au3>

Local $tStruct = DllStructCreate("wchar[256]")
If IsDllStruct($tStruct) Then
    MsgBox($MB_SYSTEMMODAL, "", "Die Variable ist eine dll Struktur")
Else
    MsgBox($MB_SYSTEMMODAL, "", "Die Variable ist keine dll Struktur")
EndIf