]> git.sesse.net Git - vlc/commitdiff
Define all XDG user directories (not implemented yet)
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 24 Aug 2009 19:41:02 +0000 (22:41 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 25 Aug 2009 13:56:52 +0000 (16:56 +0300)
include/vlc_configuration.h

index 98dd14b5e0c483e4aa460622ba282a59baa6a7e5..3e272938a5e4d57afed38357b2dfa1bb71945bc5 100644 (file)
@@ -222,10 +222,15 @@ typedef enum vlc_userdir
     VLC_HOME_DIR, /* User's home */
     VLC_CONFIG_DIR, /* VLC-specific configuration directory */
     VLC_DATA_DIR, /* VLC-specific data directory */
-    VLC_DOWNLOAD_DIR, /* VLC-specific download directory */
-    VLC_PICTURE_DIR, /* VLC-specific snapshot directory */
-    VLC_MUSIC_DIR, /* VLC-specific music directory */
-    VLC_VIDEO_DIR, /* VLC-specific video directory */
+    /* Generic directories (same as XDG) */
+    VLC_DESKTOP_DIR,
+    VLC_DOWNLOAD_DIR,
+    VLC_TEMPLATES_DIR,
+    VLC_PUBLICSHARE_DIR,
+    VLC_DOCUMENTS_DIR,
+    VLC_MUSIC_DIR,
+    VLC_PICTURES_DIR,
+    VLC_VIDEOS_DIR,
 } vlc_userdir_t;
 
 VLC_EXPORT(char *, config_GetUserDir, ( vlc_userdir_t ) LIBVLC_USED);