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 Vorlicek <janvorli@microsoft.com>2015-12-15 15:45:48 +0300
committerJan Vorlicek <janvorli@microsoft.com>2016-01-12 19:41:10 +0300
commit9e0eb8b241fc53cc0d1969f78985ec6d31e42820 (patch)
treeb3a8e56e6fad59e3796ed3521de374cf4308bf47 /src/Native/Runtime/PalRedhawkFunctions.h
parenta3526d82f27410166dcc21c173de4cd4d80f4cdd (diff)
GC to OS interface refactoring
Port changes from CoreCLR Update Runtime as needed Remove functions that are not needed anymore for Unix
Diffstat (limited to 'src/Native/Runtime/PalRedhawkFunctions.h')
-rw-r--r--src/Native/Runtime/PalRedhawkFunctions.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Native/Runtime/PalRedhawkFunctions.h b/src/Native/Runtime/PalRedhawkFunctions.h
index e2603ea1b..d1a062456 100644
--- a/src/Native/Runtime/PalRedhawkFunctions.h
+++ b/src/Native/Runtime/PalRedhawkFunctions.h
@@ -196,12 +196,6 @@ inline UInt32_BOOL PalSetEvent(HANDLE arg1)
return SetEvent(arg1);
}
-extern "C" UInt32_BOOL __stdcall SetFilePointerEx(HANDLE, LARGE_INTEGER, LARGE_INTEGER *, UInt32);
-inline UInt32_BOOL PalSetFilePointerEx(HANDLE arg1, LARGE_INTEGER arg2, LARGE_INTEGER * arg3, UInt32 arg4)
-{
- return SetFilePointerEx(arg1, arg2, arg3, arg4);
-}
-
extern "C" void __stdcall TerminateProcess(HANDLE, UInt32);
inline void PalTerminateProcess(HANDLE arg1, UInt32 arg2)
{