This file is indexed.

/usr/include/aqbanking5/aqbanking/ab_jobqueue.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**********************************************************
 * 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

/** @page P_AB_JOBQUEUE Structure AB_JOBQUEUE
<p>This page describes the properties of AB_JOBQUEUE.</p>



<h1>AB_JOBQUEUE</h1>



@anchor AB_JOBQUEUE_jobList
<h2>jobList</h2>

<p>Set this property with @ref AB_JobQueue_SetJobList(), get it with @ref AB_JobQueue_GetJobList().</p>


@anchor AB_JOBQUEUE_jobType
<h2>jobType</h2>

<p>Set this property with @ref AB_JobQueue_SetJobType(), get it with @ref AB_JobQueue_GetJobType().</p>

*/

/* 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" (see @ref AB_JOBQUEUE_jobList)
*/
AQBANKING_API AB_JOB_LIST2 *AB_JobQueue_GetJobList(const AB_JOBQUEUE *p_struct);

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

/** Setter.
 * Use this function to set the member "jobList" (see @ref AB_JOBQUEUE_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" (see @ref AB_JOBQUEUE_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);

/* end-headers */


#ifdef __cplusplus
}
#endif

#endif