mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* 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
This commit is contained in:
parent
020805377d
commit
84874fe11a
@ -21,6 +21,9 @@
|
|||||||
Move the instantiation of File -> Properties into
|
Move the instantiation of File -> Properties into
|
||||||
main-window.scm (out of business-gnome.scm) for future cases
|
main-window.scm (out of business-gnome.scm) for future cases
|
||||||
where we might decide to ship the business modules separately.
|
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 <derek@ihtfp.com>
|
2003-05-22 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
|
@ -1,6 +1,27 @@
|
|||||||
|
#include <libofx/libofx.h>
|
||||||
int
|
int
|
||||||
main(int argc, char ** argv)
|
main(int argc, char ** argv)
|
||||||
{
|
{
|
||||||
return 0;
|
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;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user