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:
authorLuqun Lou <luqunl@microsoft.com>2017-10-21 01:01:59 +0300
committerLuqun Lou <luqunl@microsoft.com>2017-10-21 01:01:59 +0300
commitbe4de5110debae29fc3c6531fb10076aaaed44a3 (patch)
tree33a00d24a7059d060cc783f8ad00738ea61d0a0d /src/System.Private.Interop
parentc94da6f051e88bd8709b2aa625e37aa3c5ab9337 (diff)
Enable GetRuntimeClassName for MiniWinRT
simple #ifdef change [tfs-changeset: 1678784]
Diffstat (limited to 'src/System.Private.Interop')
-rw-r--r--src/System.Private.Interop/src/Shared/McgComHelpers.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.Interop/src/Shared/McgComHelpers.cs b/src/System.Private.Interop/src/Shared/McgComHelpers.cs
index e4073a196..e2a26b919 100644
--- a/src/System.Private.Interop/src/Shared/McgComHelpers.cs
+++ b/src/System.Private.Interop/src/Shared/McgComHelpers.cs
@@ -34,7 +34,7 @@ namespace System.Runtime.InteropServices
/// </summary>
internal static string GetRuntimeClassName(Object obj)
{
-#if ENABLE_WINRT
+#if ENABLE_MIN_WINRT
System.IntPtr pWinRTItf = default(IntPtr);
try
@@ -59,7 +59,7 @@ namespace System.Runtime.InteropServices
/// </summary>
internal static string GetRuntimeClassName(IntPtr pWinRTItf)
{
-#if ENABLE_WINRT
+#if ENABLE_MIN_WINRT
void* unsafe_hstring = null;
try