struct REG [src]
Alias for std.os.windows.REG
Members
- BINARY (Constant)
- DWORD (Constant)
- DWORD_BIG_ENDIAN (Constant)
- DWORD_LITTLE_ENDIAN (Constant)
- EXPAND_SZ (Constant)
- FULL_RESOURCE_DESCRIPTOR (Constant)
- LINK (Constant)
- MULTI_SZ (Constant)
- NONE (Constant)
- QWORD (Constant)
- QWORD_LITTLE_ENDIAN (Constant)
- RESOURCE_LIST (Constant)
- RESOURCE_REQUIREMENTS_LIST (Constant)
- SZ (Constant)
Source
pub const REG = struct {
/// No value type
pub const NONE: ULONG = 0;
/// Unicode nul terminated string
pub const SZ: ULONG = 1;
/// Unicode nul terminated string (with environment variable references)
pub const EXPAND_SZ: ULONG = 2;
/// Free form binary
pub const BINARY: ULONG = 3;
/// 32-bit number
pub const DWORD: ULONG = 4;
/// 32-bit number (same as REG_DWORD)
pub const DWORD_LITTLE_ENDIAN: ULONG = 4;
/// 32-bit number
pub const DWORD_BIG_ENDIAN: ULONG = 5;
/// Symbolic Link (unicode)
pub const LINK: ULONG = 6;
/// Multiple Unicode strings
pub const MULTI_SZ: ULONG = 7;
/// Resource list in the resource map
pub const RESOURCE_LIST: ULONG = 8;
/// Resource list in the hardware description
pub const FULL_RESOURCE_DESCRIPTOR: ULONG = 9;
pub const RESOURCE_REQUIREMENTS_LIST: ULONG = 10;
/// 64-bit number
pub const QWORD: ULONG = 11;
/// 64-bit number (same as REG_QWORD)
pub const QWORD_LITTLE_ENDIAN: ULONG = 11;
}