summaryrefslogtreecommitdiff
path: root/py_eval.cc
diff options
context:
space:
mode:
Diffstat (limited to 'py_eval.cc')
-rw-r--r--py_eval.cc13
1 files changed, 12 insertions, 1 deletions
diff --git a/py_eval.cc b/py_eval.cc
index 2b68de16..13afcb1e 100644
--- a/py_eval.cc
+++ b/py_eval.cc
@@ -19,10 +19,15 @@ void export_parser();
void export_textual();
void export_binary();
void export_qif();
-#ifdef HAVE_XMLPARSE
+#ifdef READ_GNUCASH
void export_gnucash();
+#endif
+#ifdef HAVE_XMLPARSE
void export_xml();
#endif
+#ifdef HAVE_LIBOFX
+void export_ofx();
+#endif
void export_option();
void export_config();
void export_walk();
@@ -44,6 +49,12 @@ void initialize_ledger_for_python()
#ifdef READ_GNUCASH
export_gnucash();
#endif
+#ifdef HAVE_XMLPARSE
+ export_xml();
+#endif
+#ifdef HAVE_LIBOFX
+ export_ofx();
+#endif
export_option();
export_config();
export_walk();