1 /*****************************************************************************
2 * dirs.c: directories configuration
3 *****************************************************************************
4 * Copyright (C) 2001-2007 the VideoLAN team
5 * Copyright © 2007-2008 Rémi Denis-Courmont
7 * Authors: Gildas Bazin <gbazin@videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
28 #include <vlc_common.h>
31 # define _WIN32_IE 0x0501
39 #include "../libvlc.h"
40 #include <vlc_charset.h>
41 #include <vlc_configuration.h>
42 #include "config/configuration.h"
47 char *config_GetDataDirDefault( void )
49 return strdup (psz_vlcpath);
52 const char *config_GetConfDir (void)
54 static char appdir[PATH_MAX] = "";
55 wchar_t wdir[MAX_PATH];
57 #warning FIXME: thread-safety!
61 #if defined (UNDER_CE)
62 /*There are some errors in cegcc headers*/
63 #undef SHGetSpecialFolderPath
64 BOOL WINAPI SHGetSpecialFolderPath(HWND,LPWSTR,int,BOOL);
65 if( SHGetSpecialFolderPath( NULL, wdir, CSIDL_APPDATA, 1 ) )
67 /* Get the "Application Data" folder for all users */
68 if( S_OK == SHGetFolderPathW( NULL, CSIDL_COMMON_APPDATA
69 | CSIDL_FLAG_CREATE, NULL, SHGFP_TYPE_CURRENT, wdir ) )
72 WideCharToMultiByte (CP_UTF8, 0, wdir, -1,
73 appdir, PATH_MAX, NULL, NULL);
79 static char *config_GetShellDir (int csidl)
81 wchar_t wdir[MAX_PATH];
83 #if defined (UNDER_CE)
84 /*There are some errors in cegcc headers*/
85 #undef SHGetSpecialFolderPath
86 BOOL WINAPI SHGetSpecialFolderPath(HWND,LPWSTR,int,BOOL);
87 if (SHGetSpecialFolderPath (NULL, wdir, CSIDL_APPDATA, 1))
89 if (SHGetFolderPathW (NULL, csidl | CSIDL_FLAG_CREATE,
90 NULL, SHGFP_TYPE_CURRENT, wdir ) == S_OK)
92 return FromWide (wdir);
96 static char *config_GetAppDir (void)
99 char *psz_parent = config_GetShellDir (CSIDL_APPDATA);
101 if (psz_parent == NULL
102 || asprintf (&psz_dir, "%s\\vlc", psz_parent) == -1)
108 #warning FIXME Use known folders on Vista and above
109 char *config_GetUserDir (vlc_userdir_t type)
114 return config_GetShellDir (CSIDL_PERSONAL);
118 return config_GetAppDir ();
120 case VLC_DESKTOP_DIR:
121 case VLC_DOWNLOAD_DIR:
122 case VLC_TEMPLATES_DIR:
123 case VLC_PUBLICSHARE_DIR:
124 case VLC_DOCUMENTS_DIR:
125 return config_GetUserDir(VLC_HOME_DIR);
127 return config_GetShellDir (CSIDL_MYMUSIC);
128 case VLC_PICTURES_DIR:
129 return config_GetShellDir (CSIDL_MYPICTURES);
131 return config_GetShellDir (CSIDL_MYVIDEO);