Qt4: main interface drops always-on-top mode when going fullscreen
[vlc/asuraparaju-public.git] / src / config / dirs.c
blob22a5bdcab54f9fa0c4a07a7a50abebc1d45a96bf
1 /*****************************************************************************
2 * dirs.c: crossplatform directories configuration
3 *****************************************************************************
4 * Copyright (C) 2009 the VideoLAN team
6 * Authors: Antoine Cellerier <dionoea at videolan dot org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
27 #include <vlc_common.h>
29 #include "../libvlc.h"
31 #include "configuration.h"
33 #undef config_GetDataDir
34 /**
35 * Determines the shared architecture-independent data directory
37 * @return a string or NULL. Use free() to release.
39 char *config_GetDataDir( vlc_object_t *p_obj )
41 char *psz_path = var_InheritString( p_obj, "data-path" );
42 return psz_path ? psz_path : config_GetDataDirDefault();