diff options
Diffstat (limited to 'src/gc/gcenv.ee.standalone.inl')
-rw-r--r-- | src/gc/gcenv.ee.standalone.inl | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/src/gc/gcenv.ee.standalone.inl b/src/gc/gcenv.ee.standalone.inl index f6954fc476..642d150976 100644 --- a/src/gc/gcenv.ee.standalone.inl +++ b/src/gc/gcenv.ee.standalone.inl @@ -5,12 +5,17 @@ #ifndef __GCTOENV_EE_STANDALONE_INL__ #define __GCTOENV_EE_STANDALONE_INL__ -#include "env/gcenv.ee.h" +#include "gcinterface.h" // The singular interface instance. All calls in GCToEEInterface // will be fowarded to this interface instance. extern IGCToCLR* g_theGCToCLR; +namespace +{ + +#include "env/gcenv.ee.h" + // A note about this: // In general, we don't want to pretend to be smarter than the compiler // and force it to inline things. However, inlining is here is required @@ -236,6 +241,33 @@ ALWAYS_INLINE MethodTable* GCToEEInterface::GetFreeObjectMethodTable() assert(g_theGCToCLR != nullptr); return g_theGCToCLR->GetFreeObjectMethodTable(); } + +ALWAYS_INLINE bool GCToEEInterface::GetBooleanConfigValue(const char* key, bool* value) +{ + assert(g_theGCToCLR != nullptr); + return g_theGCToCLR->GetBooleanConfigValue(key, value); +} + +ALWAYS_INLINE bool GCToEEInterface::GetIntConfigValue(const char* key, int64_t* value) +{ + assert(g_theGCToCLR != nullptr); + return g_theGCToCLR->GetIntConfigValue(key, value); +} + +ALWAYS_INLINE bool GCToEEInterface::GetStringConfigValue(const char* key, const char** value) +{ + assert(g_theGCToCLR != nullptr); + return g_theGCToCLR->GetStringConfigValue(key, value); +} + +ALWAYS_INLINE void GCToEEInterface::FreeStringConfigValue(const char* value) +{ + assert(g_theGCToCLR != nullptr); + g_theGCToCLR->FreeStringConfigValue(value); +} + #undef ALWAYS_INLINE +} // anonymous namespace + #endif // __GCTOENV_EE_STANDALONE_INL__ |