|
GnuCash 2.4.99
|
00001 /********************************************************************\ 00002 * gnc-path.h -- Path lookup of gnucash installation locations * 00003 * * 00004 * This program is free software; you can redistribute it and/or * 00005 * modify it under the terms of the GNU General Public License as * 00006 * published by the Free Software Foundation; either version 2 of * 00007 * the License, or (at your option) any later version. * 00008 * * 00009 * This program is distributed in the hope that it will be useful, * 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00012 * GNU General Public License for more details. * 00013 * * 00014 * You should have received a copy of the GNU General Public License* 00015 * along with this program; if not, contact: * 00016 * * 00017 * Free Software Foundation Voice: +1-617-542-5942 * 00018 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 * 00019 * Boston, MA 02110-1301, USA gnu@gnu.org * 00020 \********************************************************************/ 00021 00022 00023 #ifndef GNC_PATH_H 00024 #define GNC_PATH_H 00025 00026 #include <glib.h> 00027 00032 gchar *gnc_path_get_prefix(void); 00033 00038 gchar *gnc_path_get_bindir(void); 00039 00044 gchar *gnc_path_get_libdir(void); 00045 00050 gchar *gnc_path_get_pkgdatadir(void); 00051 00056 gchar *gnc_path_get_pkgsysconfdir(void); 00057 00058 00063 gchar *gnc_path_get_pkglibdir(void); 00064 00069 gchar *gnc_path_get_gtkbuilderdir(void); 00070 00075 gchar *gnc_path_get_localedir(void); 00076 00081 gchar *gnc_path_get_accountsdir(void); 00082 00087 gchar *gnc_path_get_reportdir(void); 00088 00094 gchar *gnc_path_get_stdreportsdir(void); 00095 00103 gchar *gnc_path_get_gconfdir(gboolean force_slashes); 00104 00105 00106 00107 #endif /* GNC_PATH_H */
1.7.4