From 84874fe11ad476b2ab0a920cff1c426237ead227 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Sat, 24 May 2003 03:53:34 +0000 Subject: [PATCH] * src/import-export/ofx/test/test-link.c: fix the test program to make sure it links on many weird platforms. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8376 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 3 +++ src/import-export/ofx/test/test-link.c | 21 +++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7d8c0ea14a..3282381767 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,6 +21,9 @@ Move the instantiation of File -> Properties into main-window.scm (out of business-gnome.scm) for future cases where we might decide to ship the business modules separately. + + * src/import-export/ofx/test/test-link.c: fix the test program + to make sure it links on many weird platforms. 2003-05-22 Derek Atkins diff --git a/src/import-export/ofx/test/test-link.c b/src/import-export/ofx/test/test-link.c index 4f8ec032f1..72e059c0ff 100644 --- a/src/import-export/ofx/test/test-link.c +++ b/src/import-export/ofx/test/test-link.c @@ -1,6 +1,27 @@ +#include int main(int argc, char ** argv) { return 0; } +int ofx_proc_status_cb(struct OfxStatusData data) +{ + return 0; +} +int ofx_proc_security_cb(struct OfxSecurityData data) +{ + return 0; +} +int ofx_proc_transaction_cb(struct OfxTransactionData data) +{ + return 0; +} +int ofx_proc_statement_cb(struct OfxStatementData data) +{ + return 0; +} +int ofx_proc_account_cb(struct OfxAccountData data) +{ + return 0; +}