|
@ -87,9 +87,9 @@ bool ethash_file_size(FILE* f, size_t* ret_size) |
|
|
|
|
|
|
|
|
bool ethash_get_default_dirname(char* strbuf, size_t buffsize) |
|
|
bool ethash_get_default_dirname(char* strbuf, size_t buffsize) |
|
|
{ |
|
|
{ |
|
|
static const char dir_suffix[] = "Ethash\\"; |
|
|
static const char dir_suffix[] = "AppData\\Ethash\\"; |
|
|
strbuf[0] = '\0'; |
|
|
strbuf[0] = '\0'; |
|
|
if (!SUCCEEDED(SHGetFolderPathA(NULL, CSIDL_LOCAL_APPDATA, NULL, 0, (CHAR*)strbuf))) { |
|
|
if (!SUCCEEDED(SHGetFolderPathW(NULL, CSIDL_PROFILE, NULL, 0, (WCHAR*)strbuf))) { |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |
|
|
if (!ethash_strncat(strbuf, buffsize, "\\", 1)) { |
|
|
if (!ethash_strncat(strbuf, buffsize, "\\", 1)) { |
|
|