00001 /*************************************************************************** 00002 $RCSfile: cbanking.h,v $ 00003 ------------------- 00004 cvs : $Id: cbanking.h,v 1.1 2005/08/05 18:13:02 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 00014 #ifndef CBANKING_CBANKING_H 00015 #define CBANKING_CBANKING_H 00016 00017 00018 #include <aqbanking/banking.h> 00019 00020 00021 00022 AB_BANKING *CBanking_new(const char *appName, 00023 const char *fname); 00024 00025 00026 const char *CBanking_GetCharSet(const AB_BANKING *ab); 00027 void CBanking_SetCharSet(AB_BANKING *ab, const char *s); 00028 00030 void CBanking_SetPinDb(AB_BANKING *ab, GWEN_DB_NODE *dbPins); 00031 00032 00033 int CBanking_GetIsNonInteractive(const AB_BANKING *ab); 00034 void CBanking_SetIsNonInteractive(AB_BANKING *ab, int i); 00035 00036 #endif 00037