// ntddsysenv.h
typedef struct _SYSENV_VALUE {
ULONG Attributes;
ULONG ValueLength;
UCHAR ValueData[ANYSIZE_ARRAY];
} SYSENV_VALUE, *PSYSENV_VALUE;
View the official Windows Driver Kit DDI referenceNo description available.
Stores the value of a system environment variable using SysEnv device. This structure is used in the IOCTL_SYSENV_GET_VARIABLE request.
AttributesAttributes of the system environment variable.
ValueLengthThe length of the value of the system environment variable.
ValueData[ANYSIZE_ARRAY]The value of the system environment variable.