From b56f2fffbb54eeea8453b3ae85d1d7908baa59af Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Thu, 22 Nov 2001 14:45:11 +0000 Subject: [PATCH] Add Entry, Order, and Invoice types to g-wrapped data git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5981 57a11ea4-9604-0410-9ed3-97b8803252fd --- .../business-core/gw-business-core-spec.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/business/business-core/gw-business-core-spec.scm b/src/business/business-core/gw-business-core-spec.scm index 55780eb6ab..6dda76e76a 100644 --- a/src/business/business-core/gw-business-core-spec.scm +++ b/src/business/business-core/gw-business-core-spec.scm @@ -44,7 +44,10 @@ "#include \n" "#include \n" "#include \n" + "#include \n" + "#include \n" "#include \n" + "#include \n" "#include \n" ))) @@ -69,8 +72,14 @@ "const GncCustomer*") (gw:wrap-non-native-type mod ' "GncEmployee*" "const GncEmployee*") + (gw:wrap-non-native-type mod ' "GncEntry*" + "const GncEntry*") + (gw:wrap-non-native-type mod ' "GncInvoice*" + "const GncInvoice*") (gw:wrap-non-native-type mod ' "GncJob*" "const GncJob*") + (gw:wrap-non-native-type mod ' "GncOrder*" + "const GncOrder*") (gw:wrap-non-native-type mod ' "GncVendor*" "const GncVendor*") @@ -100,8 +109,14 @@ ;; gncEmployee.h + ;; gncEntry.h + + ;; gncInvoice.h + ;; gncJob.h + ;; gncOrder.h + ;; gncVendor.h )