00001 /*************************************************************************** 00002 $RCSfile: provider.h,v $ 00003 ------------------- 00004 cvs : $Id: provider.h,v 1.2 2005/08/16 15:23:32 aquamaniac Exp $ 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 AH_PROVIDER_H 00014 #define AH_PROVIDER_H 00015 00016 #include <aqhbci/hbci.h> 00017 #include <aqbanking/banking.h> 00018 #include <aqbanking/provider.h> 00019 00020 #ifdef __cplusplus 00021 extern "C" { 00022 #endif 00023 00024 00025 typedef struct AH_PROVIDER AH_PROVIDER; 00026 00027 00028 AQHBCI_API 00029 AB_PROVIDER *AH_Provider_new(AB_BANKING *ab, const char *name); 00030 00031 00032 00033 AQHBCI_API 00034 AH_HBCI *AH_Provider_GetHbci(AB_PROVIDER *pro); 00035 00036 00037 #ifdef __cplusplus 00038 } 00039 #endif 00040 00041 00042 00043 00044 00045 00046 #endif /* AH_PROVIDER_H */ 00047 00048 00049 00050