mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-25 02:10:36 -06:00
1cec0cb3f3
- removes warnings compiling swig engine ... [ 10%] Generating swig-engine.cpp .../libgnucash/engine/engine-helpers.h:31: Warning 313: Unrecognized extern type "C++". .../libgnucash/engine/gnc-date.h:83: Warning 313: Unrecognized extern type "C++". .../libgnucash/engine/qofquery.h:90: Warning 302: Identifier 'QofQuery' redefined (ignored), .../libgnucash/engine/gnc-option.hpp:55: Warning 302: previous definition of 'QofQuery'. .../libgnucash/engine/gnc-commodity.h:56: Warning 313: Unrecognized extern type "C++". .../libgnucash/engine/gncBusiness.h:40: Warning 313: Unrecognized extern type "C++". .../libgnucash/engine/gncEntry.h:37: Warning 313: Unrecognized extern type "C++".
130 lines
3.9 KiB
C
130 lines
3.9 KiB
C
/********************************************************************\
|
|
* gnc-path.h -- Path lookup of gnucash installation locations *
|
|
* *
|
|
* 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, contact: *
|
|
* *
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
\********************************************************************/
|
|
|
|
|
|
#ifndef GNC_PATH_H
|
|
#define GNC_PATH_H
|
|
|
|
#include <glib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Returns the installation prefix path, usually
|
|
* "$prefix".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_prefix(void);
|
|
|
|
/** Returns the bindir path, usually
|
|
* "$prefix/bin".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_bindir(void);
|
|
|
|
/** Returns the libdir path, usually
|
|
* "$prefix/lib".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_libdir(void);
|
|
|
|
/** Returns the datadir path, usually
|
|
* "$prefix/share".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_datadir(void);
|
|
|
|
/** Returns the pkgdatadir path, usually
|
|
* "$prefix/share/gnucash". Needed for gnc_gnome_locate_*().
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_pkgdatadir(void);
|
|
|
|
/** Returns the pkgdocdir path, usually
|
|
* "$prefix/share/doc/gnucash".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_pkgdocdir(void);
|
|
|
|
/** Returns the pkgsysconfdir path, usually
|
|
* "$prefix/etc/gnucash".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_pkgsysconfdir(void);
|
|
|
|
|
|
/** Returns the pkglibdir path, usually
|
|
* "$prefix/lib/gnucash".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_pkglibdir(void);
|
|
|
|
/** Returns the gtkbuilder file path, usually
|
|
* "$prefix/share/gnucash/gktbuilder".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_gtkbuilderdir(void);
|
|
|
|
/** Returns the localedir path, usually
|
|
* "$prefix/share/locale".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_localedir(void);
|
|
|
|
/** Returns the accounts file path, usually
|
|
* "$prefix/share/gnucash/accounts".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_accountsdir(void);
|
|
|
|
/** Returns the file path to the directory containing all guile scripts, usually
|
|
* "$prefix/share/guile/site/x.y".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_scmdir(void);
|
|
|
|
/** Returns the file path to the report directory, usually
|
|
* "$prefix/share/guile/site/x.y/gnucash/report".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_reportdir(void);
|
|
|
|
/** Returns the file path to the reports, usually
|
|
* "$prefix/share/guile/site/x.y/gnucash/reports".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_reportsdir(void);
|
|
|
|
/** Returns the file path to the standard
|
|
* reports, usually
|
|
* "$prefix/share/guile/site/x.y/gnucash/reports/standard".
|
|
*
|
|
* @returns A newly allocated string. */
|
|
gchar *gnc_path_get_stdreportsdir(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GNC_PATH_H */
|