2006-10-15 14:02:05 -05:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; core-utils.scm
|
|
|
|
;;; Guile module for core-utils
|
|
|
|
;;;
|
|
|
|
;;; Copyright 2006 Chris Shoemaker <c.shoemaker@cox.net>
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(define-module (gnucash core-utils))
|
2007-01-07 01:04:23 -06:00
|
|
|
(load-extension "libgnc-core-utils" "scm_init_sw_core_utils_module")
|
2006-10-15 14:02:05 -05:00
|
|
|
(use-modules (sw_core_utils))
|
|
|
|
|
2006-10-21 09:40:03 -05:00
|
|
|
(re-export gnc-is-debugging)
|
2010-08-29 14:02:57 -05:00
|
|
|
(re-export gnc-path-get-stdreportsdir)
|
2006-10-21 09:40:03 -05:00
|
|
|
(re-export g-find-program-in-path)
|
2008-04-02 13:10:35 -05:00
|
|
|
(re-export gnc-utf8?)
|
2007-05-29 11:24:38 -05:00
|
|
|
(re-export gnc-utf8-strip-invalid-strdup)
|
2008-04-01 17:07:28 -05:00
|
|
|
(re-export gnc-locale-from-utf8)
|
2008-04-02 13:10:35 -05:00
|
|
|
(re-export gnc-locale-to-utf8)
|
2007-02-19 17:45:15 -06:00
|
|
|
(re-export gnc-scm-log-warn)
|
|
|
|
(re-export gnc-scm-log-error)
|
|
|
|
(re-export gnc-scm-log-msg)
|
|
|
|
(re-export gnc-scm-log-debug)
|