Skip to content
Snippets Groups Projects
Commit 498c44b5 authored by Constantin Papizh's avatar Constantin Papizh
Browse files

Behaviour fixed for sys service sake

parent ae9fc900
No related branches found
No related tags found
1 merge request!32Behaviour fixed for sys service sake
...@@ -13,31 +13,31 @@ wchar_t* readRegKey(HKEY hKey, LPCWSTR regSubKey, LPCWSTR val) { ...@@ -13,31 +13,31 @@ wchar_t* readRegKey(HKEY hKey, LPCWSTR regSubKey, LPCWSTR val) {
} }
char* regGetUsrPath() { char* regGetUsrPath() {
static char path[MAX_PATH] = {}; static char path[MAX_PATH] = {'\0'};
if (strlen(path) > 3) { return path; } if (strlen(path) > 3) { return path; }
HKEY hKey; HKEY hKey;
const char keyPath[] = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; const char keyPath[] = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders";
LSTATUS err = RegOpenKeyExA(HKEY_CURRENT_USER, LSTATUS err = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
keyPath, keyPath,
0, KEY_READ, &hKey ); 0, KEY_READ, &hKey );
if (err != ERROR_SUCCESS) { return NULL; } if (err != ERROR_SUCCESS) { return NULL; }
DWORD len = MAX_PATH; DWORD len = MAX_PATH;
err = RegGetValueA(hKey, NULL, "Personal", RRF_RT_REG_SZ, NULL, (void*)path, &len); err = RegGetValueA(hKey, NULL, "Common Documents", RRF_RT_REG_SZ, NULL, (void*)path, &len);
RegCloseKey(hKey); RegCloseKey(hKey);
return path; return path;
} }
wchar_t* regWGetUsrPath() { wchar_t* regWGetUsrPath() {
static wchar_t path[MAX_PATH] = {}; static wchar_t path[MAX_PATH] = {'\0'};
if (wcslen(path) > 3) { return path; } if (wcslen(path) > 3) { return path; }
HKEY hKey; HKEY hKey;
const char keyPath[] = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders"; const char keyPath[] = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders";
LSTATUS err = RegOpenKeyExA(HKEY_CURRENT_USER, LSTATUS err = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
keyPath, keyPath,
0, KEY_READ, &hKey ); 0, KEY_READ, &hKey );
if (err != ERROR_SUCCESS) { return NULL; } if (err != ERROR_SUCCESS) { return NULL; }
DWORD len = MAX_PATH; DWORD len = MAX_PATH;
err = RegGetValueW(hKey, NULL, L"Personal", RRF_RT_REG_SZ, NULL, (void*)path, &len); err = RegGetValueW(hKey, NULL, L"Common Documents", RRF_RT_REG_SZ, NULL, (void*)path, &len);
RegCloseKey(hKey); RegCloseKey(hKey);
return path; return path;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment