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:
authorJan Kotas <jkotas@microsoft.com>2016-02-27 09:29:48 +0300
committerJan Kotas <jkotas@microsoft.com>2016-02-27 09:32:36 +0300
commit4cfec9fbeea49cb5d2583eebb7b0eb878fd068c3 (patch)
treec84ce10e6f6e09680bcfe6ca8e127dd707034805 /src/Native/Runtime/MiscHelpers.cpp
parente4806d61608bdb111fb98f25736337d46182f730 (diff)
Fix build breaks in UWP build
Diffstat (limited to 'src/Native/Runtime/MiscHelpers.cpp')
-rw-r--r--src/Native/Runtime/MiscHelpers.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Native/Runtime/MiscHelpers.cpp b/src/Native/Runtime/MiscHelpers.cpp
index bc8c17c25..a9b27515c 100644
--- a/src/Native/Runtime/MiscHelpers.cpp
+++ b/src/Native/Runtime/MiscHelpers.cpp
@@ -564,6 +564,7 @@ COOP_PINVOKE_HELPER(void*, RhGetUniversalTransitionThunk, ())
return (void*)RhpUniversalTransition;
}
+#ifdef CORERT
COOP_PINVOKE_HELPER(void*, RhpGetModuleSection, (ModuleManager* pModule, Int32 headerId, Int32* length))
{
return pModule->GetModuleSection((ModuleHeaderSection)headerId, length);
@@ -573,3 +574,4 @@ COOP_PINVOKE_HELPER(void*, RhpCreateModuleManager, (void* pHeaderStart, void* pH
{
return ModuleManager::Create(pHeaderStart, pHeaderEnd);
}
+#endif