00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef AQBANKING_BANKING_SIMPLE_H
00016 #define AQBANKING_BANKING_SIMPLE_H
00017
00018
00019 #ifdef __cplusplus
00020 extern "C" {
00021 #endif
00022
00023
00028
00049 AQBANKING_API
00050 void AB_Banking_SetAccountAlias(AB_BANKING *ab,
00051 AB_ACCOUNT *a, const char *alias);
00052
00069 AQBANKING_API
00070 AB_ACCOUNT *AB_Banking_GetAccountByAlias(AB_BANKING *ab,
00071 const char *alias);
00072
00073
00074 AQBANKING_API
00075 int AB_Banking_ExportWithProfile(AB_BANKING *ab,
00076 const char *exporterName,
00077 AB_IMEXPORTER_CONTEXT *ctx,
00078 const char *profileName,
00079 const char *profileFile,
00080 GWEN_IO_LAYER *io,
00081 uint32_t guiid);
00082
00083 AQBANKING_API
00084 int AB_Banking_ImportWithProfile(AB_BANKING *ab,
00085 const char *importerName,
00086 AB_IMEXPORTER_CONTEXT *ctx,
00087 const char *profileName,
00088 const char *profileFile,
00089 GWEN_IO_LAYER *io,
00090 uint32_t guiid);
00091
00092
00096
00097
00098 #ifdef __cplusplus
00099 }
00100 #endif
00101
00102
00103 #endif
00104