mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-29 12:14:31 -06:00
28fa4c6465
Note core-utils.i is used by both the guile and the python bindings so it is moved up to the common bindings directory, while guile specific changes are in bindings/guile.
69 lines
2.4 KiB
Scheme
69 lines
2.4 KiB
Scheme
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; core-utils.scm
|
|
;;; Guile module for core-utils
|
|
;;;
|
|
;;; Copyright 2006 Chris Shoemaker <c.shoemaker@cox.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, 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
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
(define-module (gnucash core-utils))
|
|
|
|
;; Guile 2 needs to find the symbols from the extension at compile time already
|
|
(eval-when
|
|
(compile load eval expand)
|
|
(load-extension "libgnucash-guile" "gnc_guile_bindings_init"))
|
|
|
|
(use-modules (sw_core_utils))
|
|
|
|
(re-export gnc-path-get-bindir)
|
|
(re-export gnc-path-get-scmdir)
|
|
(re-export gnc-path-get-reportsdir)
|
|
(re-export gnc-path-get-stdreportsdir)
|
|
(re-export gnc-path-find-localized-html-file)
|
|
(re-export gnc-build-userdata-path)
|
|
(re-export gnc-build-scm-path)
|
|
(re-export gnc-build-report-path)
|
|
(re-export gnc-build-stdreports-path)
|
|
(re-export gnc-build-reports-path)
|
|
(re-export gnc-file-path-absolute)
|
|
(re-export gnc-utf8?)
|
|
(re-export gnc-utf8-strip-invalid-strdup)
|
|
(re-export gnc-locale-from-utf8)
|
|
(re-export gnc-locale-to-utf8)
|
|
(re-export gnc-scm-log-warn)
|
|
(re-export gnc-scm-log-error)
|
|
(re-export gnc-scm-log-msg)
|
|
(re-export gnc-scm-log-debug)
|
|
(re-export gnc-locale-default-iso-currency-code)
|
|
(re-export gnc-locale-name)
|
|
|
|
(re-export gnc-prefs-set-bool)
|
|
(re-export gnc-prefs-set-int)
|
|
(re-export gnc-prefs-set-int64)
|
|
(re-export gnc-prefs-set-float)
|
|
(re-export gnc-prefs-set-string)
|
|
(re-export gnc-prefs-set-coords)
|
|
(re-export gnc-prefs-get-string)
|
|
(re-export gnc-prefs-is-extra-enabled)
|
|
(re-export gnc-prefs-is-debugging-enabled)
|
|
|
|
(define-public gnc:version (gnc-version))
|