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>2016-01-13 21:15:05 +0300
committerScott Mosier <smosier@microsoft.com>2016-01-13 21:15:05 +0300
commitb7d3626a152d752008fe42832d9606a991c87a72 (patch)
treea8a8cf5dc2049c9ec5fe1ecf1abbc02fd221c932 /src/Native/Runtime/PalRedhawkFunctions.h
parent1ed6df38318b16d9ff73f58a0d35c023d1b9baad (diff)
Repoint MRT Native sources to the open tree
- delete duplicate files - fixup project files - fixup minor errors when using sources from open tree [tfs-changeset: 1564216]
Diffstat (limited to 'src/Native/Runtime/PalRedhawkFunctions.h')
-rw-r--r--src/Native/Runtime/PalRedhawkFunctions.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Native/Runtime/PalRedhawkFunctions.h b/src/Native/Runtime/PalRedhawkFunctions.h
index e2603ea1b..e3d8602f4 100644
--- a/src/Native/Runtime/PalRedhawkFunctions.h
+++ b/src/Native/Runtime/PalRedhawkFunctions.h
@@ -39,6 +39,24 @@ inline void PalEnterCriticalSection(CRITICAL_SECTION * arg1)
EnterCriticalSection(arg1);
}
+extern "C" UInt32 __stdcall EventRegister(const GUID *, void *, void *, REGHANDLE *);
+inline UInt32 PalEventRegister(const GUID * arg1, void * arg2, void * arg3, REGHANDLE * arg4)
+{
+ return EventRegister(arg1, arg2, arg3, arg4);
+}
+
+extern "C" UInt32 __stdcall EventUnregister(REGHANDLE);
+inline UInt32 PalEventUnregister(REGHANDLE arg1)
+{
+ return EventUnregister(arg1);
+}
+
+extern "C" UInt32 __stdcall EventWrite(REGHANDLE, const EVENT_DESCRIPTOR *, UInt32, EVENT_DATA_DESCRIPTOR *);
+inline UInt32 PalEventWrite(REGHANDLE arg1, const EVENT_DESCRIPTOR * arg2, UInt32 arg3, EVENT_DATA_DESCRIPTOR * arg4)
+{
+ return EventWrite(arg1, arg2, arg3, arg4);
+}
+
extern "C" void __stdcall ExitProcess(UInt32);
inline void PalExitProcess(UInt32 arg1)
{