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:
Diffstat (limited to 'src/Native/Runtime/windows/CoffNativeCodeManager.h')
-rw-r--r--src/Native/Runtime/windows/CoffNativeCodeManager.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Native/Runtime/windows/CoffNativeCodeManager.h b/src/Native/Runtime/windows/CoffNativeCodeManager.h
index 81b4ee625..ab4a561b7 100644
--- a/src/Native/Runtime/windows/CoffNativeCodeManager.h
+++ b/src/Native/Runtime/windows/CoffNativeCodeManager.h
@@ -40,6 +40,10 @@ typedef DPTR(T_RUNTIME_FUNCTION) PTR_RUNTIME_FUNCTION;
class CoffNativeCodeManager : public ICodeManager
{
TADDR m_moduleBase;
+
+ PTR_VOID m_pvManagedCodeStartRange;
+ UInt32 m_cbManagedCodeRange;
+
PTR_RUNTIME_FUNCTION m_pRuntimeFunctionTable;
UInt32 m_nRuntimeFunctionTable;
@@ -48,6 +52,7 @@ class CoffNativeCodeManager : public ICodeManager
public:
CoffNativeCodeManager(TADDR moduleBase,
+ PTR_VOID pvManagedCodeStartRange, UInt32 cbManagedCodeRange,
PTR_RUNTIME_FUNCTION pRuntimeFunctionTable, UInt32 nRuntimeFunctionTable,
PTR_PTR_VOID pClasslibFunctions, UInt32 nClasslibFunctions);
~CoffNativeCodeManager();