summaryrefslogtreecommitdiff
path: root/src/inc/shimload.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/shimload.h')
-rw-r--r--src/inc/shimload.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/inc/shimload.h b/src/inc/shimload.h
new file mode 100644
index 0000000000..9a6ab7de6f
--- /dev/null
+++ b/src/inc/shimload.h
@@ -0,0 +1,38 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+/*============================================================
+**
+** Header: ShimLoad.hpp
+**
+** Purpose: Delay load hook used to images to bind to
+** dll's shim shipped with the EE
+**
+**
+===========================================================*/
+#ifndef _SHIMLOAD_H
+#define _SHIMLOAD_H
+
+#ifndef FEATURE_CORECLR
+#include <delayimp.h>
+
+extern FARPROC __stdcall ShimDelayLoadHook(unsigned dliNotify, // What event has occurred, dli* flag.
+ DelayLoadInfo *pdli); // Description of the event.
+
+//and one for safe mode
+extern FARPROC __stdcall ShimSafeModeDelayLoadHook(unsigned dliNotify, // What event has occurred, dli* flag.
+ DelayLoadInfo *pdli); // Description of the event.
+
+#endif
+
+//*****************************************************************************
+// Sets/Gets the directory based on the location of the module. This routine
+// is called at COR setup time. Set is called during EEStartup and by the
+// MetaData dispenser.
+//*****************************************************************************
+HRESULT SetInternalSystemDirectory();
+HRESULT GetInternalSystemDirectory(__out_ecount_opt(*pdwLength) LPWSTR buffer, __inout DWORD* pdwLength);
+
+#endif
+