/usr/include/aqbanking5/aqbanking/dlg_selectbankinfo.h is in libaqbanking33-dev 5.0.22-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | /***************************************************************************
begin : Tue Apr 13 2010
copyright : (C) 2010 by Martin Preuss
email : martin@aqbanking.de
***************************************************************************
* This file is part of the project "AqBanking". *
* Please see toplevel file COPYING of that project for license details. *
***************************************************************************/
#ifndef AQBANKING_DLG_SELECTBANKINFO_H
#define AQBANKING_DLG_SELECTBANKINFO_H
#include <gwenhywfar/dialog.h>
#include <gwenhywfar/db.h>
#include <aqbanking/banking.h>
#ifdef __cplusplus
extern "C" {
#endif
/** @defgroup G_AB_DIALOGS_SELECT_BANKINFO Bank Finder Dialog
* @ingroup G_AB_DIALOGS
*
*/
/*@{*/
AQBANKING_API
GWEN_DIALOG *AB_SelectBankInfoDialog_new(AB_BANKING *ab,
const char *country,
const char *bankCode);
AQBANKING_API
const AB_BANKINFO *AB_SelectBankInfoDialog_GetSelectedBankInfo(GWEN_DIALOG *dlg);
/*@}*/
#ifdef __cplusplus
}
#endif
#endif
|