aqbanking
5.0.22
|
00001 /*************************************************************************** 00002 begin : Tue Aug 17 2010 00003 copyright : (C) 2010 by Martin Preuss 00004 email : martin@libchipcard.de 00005 00006 *************************************************************************** 00007 * Please see toplevel file COPYING for license details * 00008 ***************************************************************************/ 00009 00010 00011 #ifndef OFXHOME_H 00012 #define OFXHOME_H 00013 00014 00015 #include <aqofxconnect/aqofxconnect.h> 00016 #include <aqofxconnect/oh_institute_data.h> 00017 #include <aqofxconnect/oh_institute_spec.h> 00018 00019 #include <gwenhywfar/xml.h> 00020 00021 typedef struct OFXHOME OFXHOME; 00022 00023 00028 AQOFXCONNECT_API OFXHOME *OfxHome_new(const char *dataFolder); 00029 00030 00036 AQOFXCONNECT_API void OfxHome_free(OFXHOME *ofh); 00037 00038 00048 AQOFXCONNECT_API const OH_INSTITUTE_SPEC_LIST *OfxHome_GetSpecs(OFXHOME *ofh); 00049 00050 00064 AQOFXCONNECT_API const OH_INSTITUTE_DATA *OfxHome_GetData(OFXHOME *ofh, int fid); 00065 00066 00067 #endif 00068 00069 00070