summaryrefslogtreecommitdiff
path: root/Source/Core/Common/WindowsRegistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/WindowsRegistry.cpp')
-rw-r--r--Source/Core/Common/WindowsRegistry.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/Common/WindowsRegistry.cpp b/Source/Core/Common/WindowsRegistry.cpp
index 2eb1ae9b9c..6067420669 100644
--- a/Source/Core/Common/WindowsRegistry.cpp
+++ b/Source/Core/Common/WindowsRegistry.cpp
@@ -46,6 +46,11 @@ bool ReadValue(std::string* value, const std::string& subkey, const std::string&
return true;
}
+// These explicit instantiations are needed to prevent linker errors when calling
+// ReadValue in WinUpdater/Platform.cpp (for u32) and ArmCPUDetect.cpp (for u64)
+template bool ReadValue(u32* value, const std::string& subkey, const std::string& name);
+template bool ReadValue(u64* value, const std::string& subkey, const std::string& name);
+
OSVERSIONINFOW GetOSVersion()
{
// PEB may have faked data if the binary is launched with "compatibility mode" enabled.