summaryrefslogtreecommitdiff
path: root/src/md/compiler/cacheload.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/md/compiler/cacheload.h')
-rw-r--r--src/md/compiler/cacheload.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/md/compiler/cacheload.h b/src/md/compiler/cacheload.h
new file mode 100644
index 0000000000..e1c3126fd9
--- /dev/null
+++ b/src/md/compiler/cacheload.h
@@ -0,0 +1,27 @@
+// 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.
+//*****************************************************************************
+// CacheLoad.h
+//
+
+//
+// Class for returning the memory image where the image lives
+//
+//*****************************************************************************
+#ifndef __CACHELOAD__H__
+#define __CACHELOAD__H__
+
+
+#undef INTERFACE
+#define INTERFACE ICacheLoad
+DECLARE_INTERFACE_(ICacheLoad, IUnknown)
+{
+ STDMETHOD(GetCachedImaged)(
+ LPVOID* pImage);
+
+ STDMETHOD(SetCachedImaged)(
+ LPVOID pImage);
+};
+
+#endif