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:
authorScott Mosier <smosier@microsoft.com>2015-11-05 01:51:04 +0300
committerScott Mosier <smosier@microsoft.com>2015-11-20 03:06:03 +0300
commitc03d823a11f54e734e340813e6cd1e543ca448ef (patch)
tree9253c3230e07568377a5744ffd8c0932774a3989 /src/Native/Runtime/PalRedhawkFunctions.h
parent896131b2af7bc8f3f01e56e391e9c186726f5c6f (diff)
Changes required to integrate code back into ProjectN tree
Diffstat (limited to 'src/Native/Runtime/PalRedhawkFunctions.h')
-rw-r--r--src/Native/Runtime/PalRedhawkFunctions.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Native/Runtime/PalRedhawkFunctions.h b/src/Native/Runtime/PalRedhawkFunctions.h
index 4fde38776..e2603ea1b 100644
--- a/src/Native/Runtime/PalRedhawkFunctions.h
+++ b/src/Native/Runtime/PalRedhawkFunctions.h
@@ -45,12 +45,6 @@ inline void PalExitProcess(UInt32 arg1)
ExitProcess(arg1);
}
-extern "C" UInt32 __stdcall FlsAlloc(PFLS_CALLBACK_FUNCTION);
-inline UInt32 PalFlsAlloc(PFLS_CALLBACK_FUNCTION arg1)
-{
- return FlsAlloc(arg1);
-}
-
extern "C" void * __stdcall FlsGetValue(UInt32);
inline void * PalFlsGetValue(UInt32 arg1)
{
@@ -227,6 +221,12 @@ inline UInt32 PalWaitForSingleObjectEx(HANDLE arg1, UInt32 arg2, UInt32_BOOL arg
}
#ifdef PAL_REDHAWK_INCLUDED
+extern "C" UInt32 __stdcall FlsAlloc(PFLS_CALLBACK_FUNCTION);
+inline UInt32 PalFlsAlloc(PFLS_CALLBACK_FUNCTION arg1)
+{
+ return FlsAlloc(arg1);
+}
+
extern "C" void __stdcall GetNativeSystemInfo(SYSTEM_INFO *);
inline void PalGetNativeSystemInfo(SYSTEM_INFO * arg1)
{