]> git.sesse.net Git - vlc/commitdiff
Implement OS/2 directories configuration
authorKO Myung-Hun <komh@chollian.net>
Mon, 10 Oct 2011 11:44:02 +0000 (20:44 +0900)
committerRémi Denis-Courmont <remi@remlab.net>
Fri, 14 Oct 2011 14:56:00 +0000 (17:56 +0300)
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
src/Makefile.am
src/os2/dirs.c [new file with mode: 0644]

index 6c939ce95a33a63a2103a5c308caa80f6c1c3886..9cd66497f870949528f9ed38c659b44477aa04bf 100644 (file)
@@ -277,7 +277,7 @@ SOURCES_libvlc_symbian = \
        $(NULL)
 
 SOURCES_libvlc_os2 = \
-       posix/dirs.c \
+       os2/dirs.c \
        misc/atomic.c \
        posix/filesystem.c \
        os2/thread.c \
diff --git a/src/os2/dirs.c b/src/os2/dirs.c
new file mode 100644 (file)
index 0000000..598e1c4
--- /dev/null
@@ -0,0 +1,93 @@
+/*****************************************************************************
+ * dirs.c: OS/2 directories configuration
+ *****************************************************************************
+ * Copyright (C) 2010 the VideoLAN team
+ *
+ * Authors: KO Myung-Hun <komh@chollian.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <vlc_common.h>
+
+#include "../libvlc.h"
+#include <vlc_charset.h>
+#include "config/configuration.h"
+
+static char *config_GetVlcDir (void)
+{
+    return FromLocaleDup (psz_vlcpath);
+}
+
+/**
+ * Determines the shared data directory
+ *
+ * @return a nul-terminated string or NULL. Use free() to release it.
+ */
+char *config_GetDataDirDefault (void)
+{
+    char *datadir = config_GetVlcDir();
+
+    if (datadir)
+        /* replace last lib\vlc with share */
+        strcpy ( datadir + strlen (datadir) - 7, "share");
+
+    return datadir;
+}
+
+/**
+ * Determines the architecture-dependent data directory
+ *
+ * @return a string (always succeeds).
+ */
+const char *config_GetLibDir (void)
+{
+    abort ();
+}
+
+/**
+ * Determines the system configuration directory.
+ *
+ * @return a string (always succeeds).
+ */
+const char *config_GetConfDir( void )
+{
+    return config_GetVlcDir ();
+}
+
+char *config_GetUserDir (vlc_userdir_t type)
+{
+    switch (type)
+    {
+        case VLC_HOME_DIR:
+        case VLC_CONFIG_DIR:
+        case VLC_DATA_DIR:
+        case VLC_CACHE_DIR:
+        case VLC_DESKTOP_DIR:
+        case VLC_DOWNLOAD_DIR:
+        case VLC_TEMPLATES_DIR:
+        case VLC_PUBLICSHARE_DIR:
+        case VLC_DOCUMENTS_DIR:
+        case VLC_MUSIC_DIR:
+        case VLC_PICTURES_DIR:
+        case VLC_VIDEOS_DIR:
+            break;
+    }
+    return config_GetVlcDir ();
+}