SYSENV_VARIABLE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddsysenv-_sysenv_variable)

_SYSENV_VARIABLE structure

Description

Stores the name a system environment variable using SysEnv device. This structure is used in the IOCTL_SYSENV_GET_VARIABLE request.

Members

VendorGuid

The vendor GUID.

VariableNameLength

The length of the string pointed to by VariableName, which contains the name of the variable.

VariableName

A string that contains the name of the variable.

See also

IOCTL_SYSENV_GET_VARIABLE