ACCT_VARIANT

A variable of this data type holds the value of a property, which is of a variant data type.

Quick info

typedef struct 
    { 
        DWORD dwType; 
        union  
            { 
            DWORD dw; 
            WCHAR *pwsz; 
            ACCT_BIN bin; 
            } Val; 
    } ACCT_VARIANT; 

Members

dwType

Type of variant:

  • PT_LONG
  • PT_UNICODE
  • PT_BINARY

dw

DWORD value of variant.

pwsz

String value of variant.

bin

Binary value of the variant.