summaryrefslogtreecommitdiff
path: root/src/inc/clrconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/clrconfig.h')
-rw-r--r--src/inc/clrconfig.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/inc/clrconfig.h b/src/inc/clrconfig.h
index c15e2eb2f5..bb49dde6a2 100644
--- a/src/inc/clrconfig.h
+++ b/src/inc/clrconfig.h
@@ -60,8 +60,6 @@ public:
// Remove any whitespace at beginning and end of value. (Only applicable for
// *string* configuration values.)
TrimWhiteSpaceFromStringValue = 0x100,
- // If set, check whether a PerformanceDefault is active for this value before using the built-in default
- MayHavePerformanceDefault = 0x200,
// Legacy REGUTIL-style lookup.
REGUTIL_default = IgnoreConfigFiles,
@@ -76,10 +74,6 @@ public:
typedef HRESULT (* GetConfigValueFunction)
(__in_z LPCWSTR /*pKey*/, __deref_out_opt LPCWSTR* /*value*/, BOOL /*systemOnly*/, BOOL /*applicationFirst*/);
- // Function pointer definition used for calling PerformanceDefaults::LookupConfigValue
- typedef BOOL (* GetPerformanceDefaultValueFunction)
- (LPCWSTR /*name*/, DWORD* /*pValue*/);
-
// Struct used to store information about where/how to find a Config DWORD.
// NOTE: Please do NOT create instances of this struct. Use the macros in file:CLRConfigValues.h instead.
typedef struct ConfigDWORDInfo
@@ -195,18 +189,10 @@ public:
// Register EEConfig's GetConfigValueCallback function so CLRConfig can look in config files.
static void RegisterGetConfigValueCallback(GetConfigValueFunction func);
- // Register PerformanceDefaults' LookupConfigValue so CLRConfig can support 'MayHavePerformanceDefault' values
- static void RegisterGetPerformanceDefaultValueCallback(GetPerformanceDefaultValueFunction func);
-
-
-
private:
// Function pointer to EEConfig's GetConfigValueCallback function (can't static bind from utilcode to VM)
static GetConfigValueFunction s_GetConfigValueCallback;
- // Function pointer to PerformanceDefaults' LookupConfigValue function (can't static bind from utilcode to VM)
- static GetPerformanceDefaultValueFunction s_GetPerformanceDefaultValueCallback;
-
// Helper method to translate LookupOptions to REGUTIL::CORConfigLevel
static REGUTIL::CORConfigLevel GetConfigLevel(LookupOptions options);