/usr/include/aqbanking5/aqbanking/dlg_selectbackend.h is in libaqbanking-dev 5.7.8-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 55 56 57 58 59 60 61 62 63 64 65 | /***************************************************************************
begin : Wed Apr 14 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_SELECTBACKEND_H
#define AQBANKING_DLG_SELECTBACKEND_H
#include <aqhbci/aqhbci.h>
#include <aqbanking/banking.h>
#include <aqbanking/provider.h>
#include <gwenhywfar/dialog.h>
#include <gwenhywfar/db.h>
/** @defgroup G_AB_DIALOGS_SELECT_BACKEND Select a Backend
* @ingroup G_AB_DIALOGS
*
*/
/*@{*/
#ifdef __cplusplus
extern "C" {
#endif
/**
* This function creates and executes a dialog which lets the user choose an online banking
* backend from the list of installed backends.
* This is a convenience function.
* @param ab pointer to the AB_BANKING object used by the application
* @param initial name of the initially selected backend
* @param text text to be shown as introduction declaring what the backend is needed for (e.g.
* "Please select the backend to create a new user for").
* @return pointer to the selected backend (or NULL on error)
*/
AQBANKING_API AB_PROVIDER *AB_SelectBackend(AB_BANKING *ab, const char *initial, const char *text);
AQBANKING_API GWEN_DIALOG *AB_SelectBackendDialog_new(AB_BANKING *ab, const char *text);
AQBANKING_API const char *AB_SelectBackendDialog_GetSelectedProvider(const GWEN_DIALOG *dlg);
AQBANKING_API void AB_SelectBackendDialog_SetSelectedProvider(GWEN_DIALOG *dlg, const char *s);
#ifdef __cplusplus
}
#endif
/*@}*/
#endif
|