This file is indexed.

/usr/include/aqbanking5/aqbanking/dlg_importer.h is in libaqbanking-dev 5.6.4beta-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
/***************************************************************************
 begin       : Tue Feb 10 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_IMPORTER_H
#define AQBANKING_DLG_IMPORTER_H


#include <gwenhywfar/dialog.h>
#include <gwenhywfar/db.h>

#include <aqbanking/banking.h>
#include <aqbanking/imexporter.h>



/** @defgroup G_AB_DIALOGS_IMPORTER Generic File Import Dialog
 * @ingroup G_AB_DIALOGS
 *
 */
/*@{*/


#ifdef __cplusplus
extern "C" {
#endif



/**
 * Creates a file import assistent.
 *
 * @return pointer to the created dialog.
 *
 * @param banking pointer to the AqBanking object

 * @param ctx pointer to the import context to receive the content of the
 * imported file
 *
 * @param finishedMessage message to show on the last page of the assistent
 *   (i.e. the page which is shown after a successfull import into the given
 *    import context).
 */
AQBANKING_API GWEN_DIALOG *AB_ImporterDialog_new(AB_BANKING *ab,
						 AB_IMEXPORTER_CONTEXT *ctx,
						 const char *finishedMessage);


#ifdef __cplusplus
}
#endif


/*@}*/


#endif