00001 /*************************************************************************** 00002 $RCSfile$ 00003 ------------------- 00004 cvs : $Id$ 00005 begin : Mon Mar 01 2004 00006 copyright : (C) 2004 by Martin Preuss 00007 email : martin@libchipcard.de 00008 00009 *************************************************************************** 00010 * Please see toplevel file COPYING for license details * 00011 ***************************************************************************/ 00012 00013 #ifndef AO_ACCOUNT_H 00014 #define AO_ACCOUNT_H 00015 00016 #include <aqbanking/account_be.h> 00017 #include <aqofxconnect/provider.h> 00018 00019 00020 #ifdef __cplusplus 00021 extern "C" { 00022 #endif 00023 00024 00025 AQOFXCONNECT_API void AO_Account_Extend(AB_ACCOUNT *a, AB_PROVIDER *pro, 00026 AB_PROVIDER_EXTEND_MODE em, 00027 GWEN_DB_NODE *dbBackend); 00028 00029 AQOFXCONNECT_API int AO_Account_GetMaxPurposeLines(const AB_ACCOUNT *a); 00030 AQOFXCONNECT_API void AO_Account_SetMaxPurposeLines(AB_ACCOUNT *a, int i); 00031 00032 AQOFXCONNECT_API int AO_Account_GetDebitAllowed(const AB_ACCOUNT *a); 00033 AQOFXCONNECT_API void AO_Account_SetDebitAllowed(AB_ACCOUNT *a, int i); 00034 00035 00036 00037 #ifdef __cplusplus 00038 } 00039 #endif 00040 00041 00042 #endif