00001 /*************************************************************************** 00002 $RCSfile$ 00003 ------------------- 00004 cvs : $Id: country.h 246 2005-03-22 14:46:35Z aquamaniac $ 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 AQBANKING_COUNTRY_H 00015 #define AQBANKING_COUNTRY_H 00016 00017 #include <gwenhywfar/list2.h> 00018 #include <aqbanking/error.h> 00019 00020 00021 #ifdef __cplusplus 00022 extern "C" { 00023 #endif 00024 00025 00026 typedef struct AB_COUNTRY AB_COUNTRY; 00027 GWEN_CONSTLIST2_FUNCTION_LIB_DEFS(AB_COUNTRY, AB_Country, AQBANKING_API) 00028 00029 #include <aqbanking/banking.h> 00030 00034 AQBANKING_API 00035 const char *AB_Country_GetName(const AB_COUNTRY *cntry); 00036 00040 AQBANKING_API 00041 const char *AB_Country_GetCode(const AB_COUNTRY *cntry); 00042 00046 AQBANKING_API 00047 int AB_Country_GetNumericCode(const AB_COUNTRY *cntry); 00048 00054 AQBANKING_API 00055 const char *AB_Country_GetLocalName(const AB_COUNTRY *cntry); 00056 00057 00058 00063 AQBANKING_API 00064 const char *AB_Country_GetCurrencyName(const AB_COUNTRY *cntry); 00065 00070 AQBANKING_API 00071 const char *AB_Country_GetCurrencyCode(const AB_COUNTRY *cntry); 00072 00077 AQBANKING_API 00078 const char *AB_Country_GetLocalCurrencyName(const AB_COUNTRY *cntry); 00079 00080 00081 00082 #ifdef __cplusplus 00083 } 00084 #endif 00085 00086 00087 #endif /* AQBANKING_COUNTRY_H */