mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
The binding remains C to simplify interaction of these two functions with SWIG and Scheme.
19 lines
262 B
C
19 lines
262 B
C
#ifndef KVP_SCM_H
|
|
#define KVP_SCM_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
#include <qof.h>
|
|
#include <libguile.h>
|
|
|
|
KvpValue* gnc_scm_to_kvp_value_ptr(SCM kvpval);
|
|
SCM gnc_kvp_value_ptr_to_scm(KvpValue* val);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* KVP_SCM_H */
|
|
|