PROPERTYINSTEX
The PROPERTYINSTEX structure defines a freeform, extended property instance.
typedef struct _PROPERTYINSTEX {
WORD Length;
WORD LengthEx;
ULPVOID lpData;
union {
BYTE Byte[];
WORD Word[];
DWORD Dword[];
LARGE_INTEGER LargeInt[];
SYSTEMTIME SysTime[];
TYPED_STRING TypedString;
};
} PROPERTYINSTEX;
Members
- Length
Length of the data in Bytes. - LengthEx
Length of the extended data. - lpData
Pointer to the extended data. - Byte
Pointer to the BYTE data. - Word
Pointer to the WORD data. - Dword
Pointer to the DWORD data. - LargeInt
Pointer to the LARGEINT data. - SysTime
Pointer to the SYSTEMTIME data. - TypedString
A typed string that may have extended data.
Requirements
Client | Requires Windows XP, Windows 2000 Professional, or Windows NT Workstation 4.0. |
Server | Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0. |
Header | Declared in Netmon.h. |