This file is indexed.

/usr/include/aqbanking5/aqbanking/ab_jobqueue.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
64
65
66
67
68
69
/**********************************************************
 * This file has been automatically created by "typemaker2"
 * from the file "ab_jobqueue.xml".
 * Please do not edit this file, all changes will be lost.
 * Better edit the mentioned source file instead.
 **********************************************************/

#ifndef AB_JOBQUEUE_H
#define AB_JOBQUEUE_H


#ifdef __cplusplus
extern "C" {
#endif

/* needed system headers */
#include <gwenhywfar/types.h>
#include <gwenhywfar/list1.h>
#include <gwenhywfar/inherit.h>

/* pre-headers */
#include <aqbanking/job.h>

typedef struct AB_JOBQUEUE AB_JOBQUEUE;
GWEN_LIST_FUNCTION_LIB_DEFS(AB_JOBQUEUE, AB_JobQueue, AQBANKING_API)
GWEN_INHERIT_FUNCTION_LIB_DEFS(AB_JOBQUEUE, AQBANKING_API)


/* post-headers */


/** Constructor. */
AQBANKING_API AB_JOBQUEUE *AB_JobQueue_new(void);

/** Destructor. */
AQBANKING_API void AB_JobQueue_free(AB_JOBQUEUE *p_struct);

AQBANKING_API void AB_JobQueue_Attach(AB_JOBQUEUE *p_struct);

AQBANKING_API AB_JOBQUEUE *AB_JobQueue_dup(const AB_JOBQUEUE *p_struct);

/** Getter.
 * Use this function to get the member "jobList"
*/
AQBANKING_API AB_JOB_LIST2 *AB_JobQueue_GetJobList(const AB_JOBQUEUE *p_struct);

/** Getter.
 * Use this function to get the member "jobType"
*/
AQBANKING_API int AB_JobQueue_GetJobType(const AB_JOBQUEUE *p_struct);

/** Setter.
 * Use this function to set the member "jobList"
*/
AQBANKING_API void AB_JobQueue_SetJobList(AB_JOBQUEUE *p_struct, AB_JOB_LIST2 *p_src);

/** Setter.
 * Use this function to set the member "jobType"
*/
AQBANKING_API void AB_JobQueue_SetJobType(AB_JOBQUEUE *p_struct, int p_src);

/* list1 functions */
AQBANKING_API AB_JOBQUEUE_LIST *AB_JobQueue_List_dup(const AB_JOBQUEUE_LIST *p_src);

#ifdef __cplusplus
}
#endif

#endif