Menu

Defines the data type of an Application Verifier property.

Copy Code
typedef enum 
    VerifierPropertyType
  
{
    VerifierPropertyTypeNone,
    VerifierPropertyTypeDWORD,
    VerifierPropertyTypeQWORD,
    VerifierPropertyTypeString,
    VerifierPropertyTypeStringArray,
    VerifierPropertyTypeByteArray,
    VerifierPropertyTypeBoolean
}

Elements

VerifierPropertyTypeNone

The property will be a variant of type VT_EMPTY.

VerifierPropertyTypeDWORD

The property will be a variant of type VT_UI4.

VerifierPropertyTypeQWORD

The property will be a variant of type VT_UI8.

VerifierPropertyTypeString

The property will be a variant of type VT_BSTR.

VerifierPropertyTypeStringArray

The property will be a variant of either type VT_ARRAY | VT_BSTR.

VerifierPropertyTypeByteArray

The property will be a variant of either type VT_ARRAY | VT_UI1.

VerifierPropertyTypeBoolean

The property will be a variant of type VT_BOOL.

Requirements

Header: Enum.h

Library: Appverifier.dll

See Also