00001 /********************************************************************\ 00002 * gnc-hbci-gettrans.h -- hbci get transactions function * 00003 * Copyright (C) 2002 Christian Stimming * 00004 * * 00005 * This program is free software; you can redistribute it and/or * 00006 * modify it under the terms of the GNU General Public License as * 00007 * published by the Free Software Foundation; either version 2 of * 00008 * the License, or (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License* 00016 * along with this program; if not, contact: * 00017 * * 00018 * Free Software Foundation Voice: +1-617-542-5942 * 00019 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 * 00020 * Boston, MA 02110-1301, USA gnu@gnu.org * 00021 \********************************************************************/ 00022 00023 #ifndef GNC_HBCI_GETTRANS_H 00024 #define GNC_HBCI_GETTRANS_H 00025 00026 #include <aqbanking/jobgettransactions.h> 00027 00028 #include "import-main-matcher.h" 00029 #include "Account.h" 00030 00032 void 00033 gnc_hbci_gettrans (GtkWidget *parent, Account *gnc_acc); 00034 00037 gboolean 00038 gnc_hbci_gettrans_final(GtkWidget *parent, 00039 Account *gnc_acc, 00040 const AB_JOB *trans_job, 00041 gboolean run_until_done); 00042 00045 gboolean 00046 gnc_hbci_import_final(GtkWidget *parent, 00047 Account *gnc_acc, 00048 AB_TRANSACTION_LIST2 *trans_list, 00049 gboolean run_until_done); 00050 00052 struct trans_list_data 00053 { 00054 Account *gnc_acc; 00055 GNCImportMainMatcher *importer_generic; 00056 }; 00057 00060 AB_TRANSACTION *gnc_hbci_trans_list_cb(AB_TRANSACTION *imported_trans, 00061 void *user_data); 00062 00063 00064 #endif /* GNC_HBCI_GETTRANS_H */
1.5.2