// ntddsysenv.h
typedef struct _SYSENV_VARIABLE {
GUID VendorGuid;
ULONG VariableNameLength;
WCHAR VariableName[ANYSIZE_ARRAY];
} SYSENV_VARIABLE, *PSYSENV_VARIABLE;
View the official Windows Driver Kit DDI referenceNo description available.
Stores the name a system environment variable using SysEnv device. This structure is used in the IOCTL_SYSENV_GET_VARIABLE request.
VendorGuidThe vendor GUID.
VariableNameLengthThe length of the string pointed to by VariableName, which contains the name of the variable.
VariableNameA string that contains the name of the variable.