This file is indexed.

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

#ifndef AB_QUEUE_H
#define AB_QUEUE_H


#ifdef __cplusplus
extern "C" {
#endif

/** @page P_AB_QUEUE Structure AB_QUEUE
<p>This page describes the properties of AB_QUEUE.</p>



<h1>AB_QUEUE</h1>



@anchor AB_QUEUE_userQueueList
<h2>userQueueList</h2>

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

*/

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

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

typedef struct AB_QUEUE AB_QUEUE;
GWEN_INHERIT_FUNCTION_LIB_DEFS(AB_QUEUE, AQBANKING_API)



/* post-headers */
#include <aqbanking/ab_queuefns.h>


/** Constructor. */
AQBANKING_API AB_QUEUE *AB_Queue_new(void);

/** Destructor. */
AQBANKING_API void AB_Queue_free(AB_QUEUE *p_struct);

AQBANKING_API void AB_Queue_Attach(AB_QUEUE *p_struct);

AQBANKING_API AB_QUEUE *AB_Queue_dup(const AB_QUEUE *p_struct);

AQBANKING_API AB_QUEUE *AB_Queue_copy(AB_QUEUE *p_struct, const AB_QUEUE *p_src);

/** Getter.
 * Use this function to get the member "userQueueList" (see @ref AB_QUEUE_userQueueList)
*/
AQBANKING_API AB_USERQUEUE_LIST *AB_Queue_GetUserQueueList(const AB_QUEUE *p_struct);

/** Setter.
 * Use this function to set the member "userQueueList" (see @ref AB_QUEUE_userQueueList)
*/
AQBANKING_API void AB_Queue_SetUserQueueList(AB_QUEUE *p_struct, AB_USERQUEUE_LIST *p_src);

/* end-headers */


#ifdef __cplusplus
}
#endif

#endif