blob: b037ca63add363f9bd8a007494e7c2a644559f71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Data.Tuples
{
using System;
/// <summary>
/// Registry root mapping.
/// </summary>
public enum RegistryRootType
{
Unknown = Int32.MaxValue,
/// <summary>HKLM in a per-machine and HKCU in per-user.</summary>
MachineUser = -1,
ClassesRoot = 0,
CurrentUser = 1,
LocalMachine = 2,
Users = 3
}
}
|