1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4//*****************************************************************************
5// File: registrywrapper.h
6//
7// Wrapper around Win32 Registry Functions allowing redirection of .Net
8// Framework root registry location
9//
10//*****************************************************************************
11#ifndef __REGISTRYWRAPPER_H
12#define __REGISTRYWRAPPER_H
13
14
15#define ClrRegCreateKeyEx RegCreateKeyExW
16#define ClrRegOpenKeyEx RegOpenKeyExW
17#define IsNgenOffline() false
18
19
20#endif // __REGISTRYWRAPPER_H
21