summaryrefslogtreecommitdiff
path: root/src/ilasm/MscorpeSxS.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ilasm/MscorpeSxS.h')
-rw-r--r--src/ilasm/MscorpeSxS.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ilasm/MscorpeSxS.h b/src/ilasm/MscorpeSxS.h
new file mode 100644
index 0000000000..8cee9c49cd
--- /dev/null
+++ b/src/ilasm/MscorpeSxS.h
@@ -0,0 +1,20 @@
+// 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.
+//
+// File: MscorpeSxS.h
+//
+
+//
+// This file defines a wrapper for SxS version of mscorpe.dll (dynamically loaded via shim).
+//
+
+#pragma once
+
+#include <MscorpeSxSWrapper.h>
+
+// Loads mscorpe.dll (uses shim)
+HRESULT LoadMscorpeDll(HMODULE * phModule);
+
+// Wrapper for mscorpe.dll calls
+typedef MscorpeSxSWrapper<LoadMscorpeDll> MscorpeSxS;