mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
Add definitions for more CSIDL_* constants in case missing from headers.
2007-06-06 Tor Lillqvist <tml@novell.com> * glib/gutils.c: Add definitions for more CSIDL_* constants in case missing from headers. Use CSIDL_PERSONAL instead of CSIDL_MYDOCUMENTS as CSIDL_MYDOCUMENTS seems to be a new thing that doesn't work in XP SP2 even. svn path=/trunk/; revision=5544
This commit is contained in:
parent
f6f9877b50
commit
e087f8c43c
@ -1,3 +1,10 @@
|
||||
2007-06-06 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* glib/gutils.c: Add definitions for more CSIDL_* constants in
|
||||
case missing from headers. Use CSIDL_PERSONAL instead of
|
||||
CSIDL_MYDOCUMENTS as CSIDL_MYDOCUMENTS seems to be a new thing
|
||||
that doesn't work in XP SP2 even.
|
||||
|
||||
2007-06-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gutils.c (g_get_user_special_dir): Fall back to
|
||||
|
@ -87,6 +87,12 @@
|
||||
# include <direct.h>
|
||||
# include <shlobj.h>
|
||||
/* older SDK (e.g. msvc 5.0) does not have these*/
|
||||
# ifndef CSIDL_MYMUSIC
|
||||
# define CSIDL_MYMUSIC 13
|
||||
# endif
|
||||
# ifndef CSIDL_MYVIDEO
|
||||
# define CSIDL_MYVIDEO 14
|
||||
# endif
|
||||
# ifndef CSIDL_INTERNET_CACHE
|
||||
# define CSIDL_INTERNET_CACHE 32
|
||||
# endif
|
||||
@ -2172,7 +2178,7 @@ static void
|
||||
load_user_special_dirs (void)
|
||||
{
|
||||
g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
|
||||
g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = get_special_folder (CSIDL_MYDOCUMENTS);
|
||||
g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = get_special_folder (CSIDL_PERSONAL);
|
||||
g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY); /* XXX correct ? */
|
||||
g_user_special_dirs[G_USER_DIRECTORY_MUSIC] = get_special_folder (CSIDL_MYMUSIC);
|
||||
g_user_special_dirs[G_USER_DIRECTORY_PICTURES] = get_special_folder (CSIDL_MYPICTURES);
|
||||
@ -2267,7 +2273,7 @@ static void g_init_user_config_dir (void);
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
/* included in all copies or substantial portions of the Software.
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
|
Loading…
Reference in New Issue
Block a user