summaryrefslogtreecommitdiff
path: root/src/binder/inc/assembly.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/binder/inc/assembly.hpp')
-rw-r--r--src/binder/inc/assembly.hpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/binder/inc/assembly.hpp b/src/binder/inc/assembly.hpp
index 425e80567e..7071e2eaa0 100644
--- a/src/binder/inc/assembly.hpp
+++ b/src/binder/inc/assembly.hpp
@@ -100,6 +100,8 @@ namespace BINDER_SPACE
STDMETHOD(GetBinderFlags)(DWORD *pBinderFlags);
+ STDMETHOD(GetLoaderAllocator)(LPVOID* pLoaderAllocator);
+
// --------------------------------------------------------------------
// Assembly methods
// --------------------------------------------------------------------
@@ -137,6 +139,11 @@ namespace BINDER_SPACE
static PEKIND GetSystemArchitecture();
static BOOL IsValidArchitecture(PEKIND kArchitecture);
+ inline ICLRPrivBinder* GetBinder()
+ {
+ return m_pBinder;
+ }
+
#ifndef CROSSGEN_COMPILE
protected:
#endif
@@ -195,11 +202,6 @@ public:
_ASSERTE(m_pBinder == NULL || m_pBinder == pBinder);
m_pBinder = pBinder;
}
-
- inline ICLRPrivBinder* GetBinder()
- {
- return m_pBinder;
- }
friend class ::CLRPrivBinderCoreCLR;