Stop using ACLOCAL_FLAGS
[dconf.git] / common / dconf-paths.h
blob9449fa5481cda659780b7e31264c53b8afe41396
1 /*
2 * Copyright © 2008-2009 Ryan Lortie
3 * Copyright © 2010 Codethink Limited
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the licence, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Ryan Lortie <desrt@desrt.ca>
21 #ifndef __dconf_paths_h__
22 #define __dconf_paths_h__
24 #include <glib.h>
26 gboolean dconf_is_path (const gchar *string,
27 GError **error);
28 gboolean dconf_is_key (const gchar *string,
29 GError **error);
30 gboolean dconf_is_dir (const gchar *string,
31 GError **error);
33 gboolean dconf_is_rel_path (const gchar *string,
34 GError **error);
35 gboolean dconf_is_rel_key (const gchar *string,
36 GError **error);
37 gboolean dconf_is_rel_dir (const gchar *string,
38 GError **error);
40 #endif /* __dconf_paths_h__ */