00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef AH_CONNECTION_H
00015 #define AH_CONNECTION_H
00016
00017
00018 #define AH_CONNECTION_MARK_HBCI 1
00019 #define AH_CONNECTION_MARK_HTTPS 2
00020
00021 #include <gwenhywfar/netconnection.h>
00022 #include <aqhbci/hbci.h>
00023
00024 #ifdef __cplusplus
00025 extern "C" {
00026 #endif
00027
00028 void AH_Connection_Extend(AH_HBCI *hbci, GWEN_NETCONNECTION *conn);
00029
00030 int AH_Connection_IsDown(const GWEN_NETCONNECTION *conn);
00031 void AH_Connection_SetIsDown(GWEN_NETCONNECTION *conn, int i);
00032
00033 #ifdef __cplusplus
00034 }
00035 #endif
00036
00037
00038 #endif
00039
00040