Files
gnucash/src/engine/kvp-scm.h
John Ralls 9e142124f4 Convert kvp-scm to C++ and to using the KVP C++ API.
The binding remains C to simplify interaction of these two functions with
SWIG and Scheme.
2015-07-03 17:13:14 -07:00

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 */