From: Erwan Tulou Date: Mon, 24 Aug 2009 21:49:37 +0000 (+0200) Subject: core: add missing type (fix compil for qt4) and add new types for snapshot/record X-Git-Tag: 1.1.0-ff~3943 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f64d068967546aff0281bbc83ed8ad1d5bd7f871;p=vlc core: add missing type (fix compil for qt4) and add new types for snapshot/record --- diff --git a/include/vlc_configuration.h b/include/vlc_configuration.h index bdd734e303..98dd14b5e0 100644 --- a/include/vlc_configuration.h +++ b/include/vlc_configuration.h @@ -222,6 +222,10 @@ 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 */ } vlc_userdir_t; VLC_EXPORT(char *, config_GetUserDir, ( vlc_userdir_t ) LIBVLC_USED);