2012-12-15 11:58:40 -06:00
|
|
|
/********************************************************************\
|
|
|
|
* gnc-guile-utils.h -- basic guile extensions *
|
|
|
|
* Copyright (C) 2012 Geert Janssens *
|
|
|
|
* *
|
|
|
|
* 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_GUILE_UTILS_H
|
|
|
|
#define GNC_GUILE_UTILS_H
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <libguile.h>
|
|
|
|
|
|
|
|
/** Helper function to get the string representation of
|
2012-12-22 12:20:29 -06:00
|
|
|
* a guile string.
|
|
|
|
*
|
|
|
|
* Returns a newly allocated string that must be freed with g_free*/
|
|
|
|
gchar * gnc_scm_to_locale_string(SCM scm_string);
|
|
|
|
|
|
|
|
/** Helper function to get the string representation of
|
|
|
|
* a guile symbol.
|
|
|
|
*
|
|
|
|
* Returns a newly allocated string that must be freed with g_free*/
|
2012-12-15 11:58:40 -06:00
|
|
|
gchar * gnc_scm_symbol_to_locale_string(SCM scm_string);
|
|
|
|
|
2012-12-22 12:20:05 -06:00
|
|
|
/* Helpful functions for calling functions that return
|
|
|
|
* specific kinds of values. These functions do error
|
|
|
|
* checking to verify the result is of the correct type. */
|
2012-12-22 12:20:53 -06:00
|
|
|
char * gnc_scm_call_1_to_string(SCM func, SCM arg);
|
|
|
|
char * gnc_scm_call_1_symbol_to_string(SCM func, SCM arg);
|
|
|
|
SCM gnc_scm_call_1_to_procedure(SCM func, SCM arg);
|
|
|
|
SCM gnc_scm_call_1_to_list(SCM func, SCM arg);
|
|
|
|
SCM gnc_scm_call_1_to_vector(SCM func, SCM arg);
|
|
|
|
|
|
|
|
/* Deprectated functions, will be removed soon */
|
|
|
|
#define gnc_guile_call1_to_string gnc_scm_call_1_to_string
|
|
|
|
#define gnc_guile_call1_symbol_to_string gnc_scm_call_1_symbol_to_string
|
|
|
|
#define gnc_guile_call1_to_procedure gnc_scm_call_1_to_procedure
|
|
|
|
#define gnc_guile_call1_to_list gnc_scm_call_1_to_list
|
|
|
|
#define gnc_guile_call1_to_vector gnc_scm_call_1_to_vector
|
2012-12-22 12:20:05 -06:00
|
|
|
|
2012-12-15 11:58:40 -06:00
|
|
|
#endif
|