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.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/md/compiler/cacheload.h b/src/md/compiler/cacheload.h
new file mode 100644
index 0000000000..e88d74686b
--- /dev/null
+++ b/src/md/compiler/cacheload.h
@@ -0,0 +1,28 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license 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