mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 09:12:22 -05:00
Use the right API to get the path to Roaming AppData and Downloads directories, and actually convert it to utf-8 instead of using it directly.
This commit is contained in:
parent
e4413e0178
commit
5fee31b1f0
@ -295,31 +295,8 @@ cfg_get_int (char *cfg, char *var)
|
|||||||
char *xdir = NULL; /* utf-8 encoding */
|
char *xdir = NULL; /* utf-8 encoding */
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
|
#include <Windows.h>
|
||||||
#include <windows.h>
|
#include <ShlObj.h>
|
||||||
|
|
||||||
static gboolean
|
|
||||||
get_reg_str (const char *sub, const char *name, char *out, DWORD len)
|
|
||||||
{
|
|
||||||
HKEY hKey;
|
|
||||||
DWORD t;
|
|
||||||
|
|
||||||
if (RegOpenKeyEx (HKEY_CURRENT_USER, sub, 0, KEY_READ, &hKey) ==
|
|
||||||
ERROR_SUCCESS)
|
|
||||||
{
|
|
||||||
if (RegQueryValueEx (hKey, name, NULL, &t, out, &len) != ERROR_SUCCESS ||
|
|
||||||
t != REG_SZ)
|
|
||||||
{
|
|
||||||
RegCloseKey (hKey);
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
out[len-1] = 0;
|
|
||||||
RegCloseKey (hKey);
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
char *
|
char *
|
||||||
@ -327,10 +304,13 @@ get_xdir (void)
|
|||||||
{
|
{
|
||||||
if (!xdir)
|
if (!xdir)
|
||||||
{
|
{
|
||||||
#ifdef WIN32
|
#ifndef WIN32
|
||||||
char out[256];
|
xdir = g_build_filename (g_get_user_config_dir (), HEXCHAT_DIR, NULL);
|
||||||
|
#else
|
||||||
|
wchar_t* roaming_path_wide;
|
||||||
|
gchar* roaming_path;
|
||||||
|
|
||||||
if (portable_mode () || !get_reg_str ("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders", "AppData", out, sizeof (out)))
|
if (portable_mode () || SHGetKnownFolderPath (&FOLDERID_RoamingAppData, 0, NULL, &roaming_path_wide) != S_OK)
|
||||||
{
|
{
|
||||||
char *path;
|
char *path;
|
||||||
char file[MAX_PATH];
|
char file[MAX_PATH];
|
||||||
@ -348,10 +328,13 @@ get_xdir (void)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
xdir = g_build_filename (out, "HexChat", NULL);
|
roaming_path = g_utf16_to_utf8 (roaming_path_wide, -1, NULL, NULL, NULL);
|
||||||
|
CoTaskMemFree (roaming_path_wide);
|
||||||
|
|
||||||
|
xdir = g_build_filename (roaming_path, "HexChat", NULL);
|
||||||
|
|
||||||
|
g_free (roaming_path);
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
xdir = g_build_filename (g_get_user_config_dir (), HEXCHAT_DIR, NULL);
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -737,7 +720,8 @@ load_default_config(void)
|
|||||||
const char *username, *realname, *font, *langs;
|
const char *username, *realname, *font, *langs;
|
||||||
char *sp;
|
char *sp;
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
char out[256];
|
wchar_t* roaming_path_wide;
|
||||||
|
gchar* roaming_path;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
username = g_get_user_name ();
|
username = g_get_user_name ();
|
||||||
@ -861,13 +845,18 @@ load_default_config(void)
|
|||||||
strcpy (prefs.hex_away_reason, _("I'm busy"));
|
strcpy (prefs.hex_away_reason, _("I'm busy"));
|
||||||
strcpy (prefs.hex_completion_suffix, ",");
|
strcpy (prefs.hex_completion_suffix, ",");
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
if (portable_mode () || !get_reg_str ("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders", "Personal", out, sizeof (out)))
|
if (portable_mode () || SHGetKnownFolderPath (&FOLDERID_Downloads, 0, NULL, &roaming_path_wide) != S_OK)
|
||||||
{
|
{
|
||||||
snprintf (prefs.hex_dcc_dir, sizeof (prefs.hex_dcc_dir), "%s\\downloads", get_xdir ());
|
snprintf (prefs.hex_dcc_dir, sizeof (prefs.hex_dcc_dir), "%s\\downloads", get_xdir ());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
snprintf (prefs.hex_dcc_dir, sizeof (prefs.hex_dcc_dir), "%s\\Downloads", out);
|
roaming_path = g_utf16_to_utf8 (roaming_path_wide, -1, NULL, NULL, NULL);
|
||||||
|
CoTaskMemFree (roaming_path_wide);
|
||||||
|
|
||||||
|
g_strlcpy (prefs.hex_dcc_dir, roaming_path, sizeof (prefs.hex_dcc_dir));
|
||||||
|
|
||||||
|
g_free (roaming_path);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (g_get_user_special_dir (G_USER_DIRECTORY_DOWNLOAD))
|
if (g_get_user_special_dir (G_USER_DIRECTORY_DOWNLOAD))
|
||||||
|
Loading…
Reference in New Issue
Block a user