Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/src/Microsoft/Win32/RegistryOptions.cs')
-rw-r--r--src/System.Private.CoreLib/src/Microsoft/Win32/RegistryOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/src/Microsoft/Win32/RegistryOptions.cs b/src/System.Private.CoreLib/src/Microsoft/Win32/RegistryOptions.cs
index 90b6a3dd7..201a6df0e 100644
--- a/src/System.Private.CoreLib/src/Microsoft/Win32/RegistryOptions.cs
+++ b/src/System.Private.CoreLib/src/Microsoft/Win32/RegistryOptions.cs
@@ -14,7 +14,7 @@ namespace Microsoft.Win32
#endif
enum RegistryOptions
{
- None = Interop.mincore.RegistryOptions.REG_OPTION_NON_VOLATILE, // 0x0000
- Volatile = Interop.mincore.RegistryOptions.REG_OPTION_VOLATILE, // 0x0001
+ None = Interop.Advapi32.RegistryOptions.REG_OPTION_NON_VOLATILE, // 0x0000
+ Volatile = Interop.Advapi32.RegistryOptions.REG_OPTION_VOLATILE, // 0x0001
};
}