00001 /*************************************************************************** 00002 $RCSfile$ 00003 ------------------- 00004 cvs : $Id: provider.h 1396 2007-11-22 17:37:27Z martin $ 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_PROVIDER_H 00014 #define AO_PROVIDER_H 00015 00016 #include <aqofxconnect/aqofxconnect.h> 00017 #include <aqbanking/banking_be.h> 00018 #include <aqbanking/provider_be.h> 00019 00020 #define AQOFXCONNECT_BACKENDNAME "aqofxconnect" 00021 00022 #define AQOFXCONNECT_LOGDOMAIN "aqofxconnect" 00023 00024 #ifdef __cplusplus 00025 extern "C" { 00026 #endif 00027 00028 typedef struct AO_PROVIDER AO_PROVIDER; 00029 00030 00031 AQOFXCONNECT_API AB_PROVIDER *AO_Provider_new(AB_BANKING *ab); 00032 00033 AQOFXCONNECT_API int AO_Provider_RequestAccounts(AB_PROVIDER *pro, 00034 AB_USER *u, 00035 uint32_t guiid); 00036 00037 #ifdef __cplusplus 00038 } 00039 #endif 00040 00041 00042 #endif 00043