| 1 | #pragma once |
| 2 | // 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. |
| 3 | |
| 4 | namespace WixInternal |
| 5 | { |
| 6 | namespace TestSupport |
| 7 | { |
| 8 | using namespace System; |
| 9 | |
| 10 | public ref class TestRegistryFixture : IDisposable |
| 11 | { |
| 12 | private: |
| 13 | String^ rootPath; |
| 14 | public: |
| 15 | TestRegistryFixture(); |
| 16 | |
| 17 | ~TestRegistryFixture(); |
| 18 | |
| 19 | void SetUp(); |
| 20 | |
| 21 | void TearDown(); |
| 22 | |
| 23 | String^ GetDirectHkcuPath(REG_KEY_BITNESS bitness, ... array<String^>^ paths); |
| 24 | |
| 25 | String^ GetDirectHklmPath(REG_KEY_BITNESS bitness, ... array<String^>^ paths); |
| 26 | }; |
| 27 | } |
| 28 | } |