mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22638 57a11ea4-9604-0410-9ed3-97b8803252fd
28 lines
935 B
Scheme
28 lines
935 B
Scheme
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; core-utils.scm
|
|
;;; Guile module for core-utils
|
|
;;;
|
|
;;; Copyright 2006 Chris Shoemaker <c.shoemaker@cox.net>
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(define-module (gnucash core-utils))
|
|
(load-extension "libgnc-core-utils" "scm_init_sw_core_utils_module")
|
|
(use-modules (sw_core_utils))
|
|
|
|
(re-export gnc-is-debugging)
|
|
(re-export gnc-path-get-bindir)
|
|
(re-export gnc-path-get-stdreportsdir)
|
|
(re-export gnc-path-find-localized-html-file)
|
|
(re-export gnc-build-dotgnucash-path)
|
|
(re-export gnc-build-report-path)
|
|
(re-export gnc-build-stdreports-path)
|
|
(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)
|