summaryrefslogtreecommitdiff
path: root/src/vm/clrconfignative.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/clrconfignative.cpp')
-rw-r--r--src/vm/clrconfignative.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/vm/clrconfignative.cpp b/src/vm/clrconfignative.cpp
new file mode 100644
index 0000000000..11b9eb5555
--- /dev/null
+++ b/src/vm/clrconfignative.cpp
@@ -0,0 +1,21 @@
+// 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.
+//
+// File: clrconfiguration.cpp
+//
+
+#include "common.h"
+#include "clrconfignative.h"
+#include <configuration.h>
+
+BOOL QCALLTYPE ClrConfigNative::GetConfigBoolValue(LPCWSTR name)
+{
+ QCALL_CONTRACT;
+
+ BOOL retValue = FALSE;
+ BEGIN_QCALL;
+ retValue = Configuration::GetKnobBooleanValue(name, FALSE);
+ END_QCALL;
+ return(retValue);
+}