Added support for MinGW32 - to be working with qticsneo

This commit is contained in:
Tomasz Ziobrowski
2021-06-15 20:15:08 +02:00
parent 3cff831c6b
commit af2c30885b
4 changed files with 41 additions and 37 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
#include "icsneo/platform/windows/registry.h"
#include <codecvt>
#include <vector>
#include <locale>
using namespace icsneo;
@@ -105,4 +106,4 @@ bool Registry::Get(std::wstring path, std::wstring key, uint32_t& value) {
bool Registry::Get(std::string path, std::string key, uint32_t& value) {
return Get(converter.from_bytes(path), converter.from_bytes(key), value);
}
}