This file is indexed.

/usr/include/aqbanking5/aqbanking/textkeydescr.h is in libaqbanking33-dev 5.0.22-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
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* This file is auto-generated from "textkeydescr.xml" by the typemaker
   tool of Gwenhywfar. 
   Do not edit this file -- all changes will be lost! */
#ifndef TEXTKEYDESCR_H
#define TEXTKEYDESCR_H

/** @page P_AB_TEXTKEY_DESCR_PUBLIC AB_TextKeyDescr (public)
This page describes the properties of AB_TEXTKEY_DESCR
This type contains the description of a textkey. Please note that all text fields are in UTF-8.
@anchor AB_TEXTKEY_DESCR_Value
<h3>Value</h3>
<p>
</p>
<p>
Set this property with @ref AB_TextKeyDescr_SetValue, 
get it with @ref AB_TextKeyDescr_GetValue
</p>

@anchor AB_TEXTKEY_DESCR_Name
<h3>Name</h3>
<p>
This is the localized name for the text key value given above.
</p>
<p>
Set this property with @ref AB_TextKeyDescr_SetName, 
get it with @ref AB_TextKeyDescr_GetName
</p>

@anchor AB_TEXTKEY_DESCR_Descr
<h3>Descr</h3>
<p>
This is the localized description for the text key value given above.
</p>
<p>
Set this property with @ref AB_TextKeyDescr_SetDescr, 
get it with @ref AB_TextKeyDescr_GetDescr
</p>

*/
#ifdef __cplusplus
extern "C" {
#endif

typedef struct AB_TEXTKEY_DESCR AB_TEXTKEY_DESCR;

#ifdef __cplusplus
} /* __cplusplus */
#endif

#include <gwenhywfar/db.h>
#include <gwenhywfar/misc.h>
#include <gwenhywfar/list2.h>
/* headers */
#include <aqbanking/error.h>

#ifdef __cplusplus
extern "C" {
#endif


GWEN_LIST_FUNCTION_LIB_DEFS(AB_TEXTKEY_DESCR, AB_TextKeyDescr, AQBANKING_API)
AQBANKING_API AB_TEXTKEY_DESCR_LIST *AB_TextKeyDescr_List_dup(const AB_TEXTKEY_DESCR_LIST *stl);

GWEN_LIST2_FUNCTION_LIB_DEFS(AB_TEXTKEY_DESCR, AB_TextKeyDescr, AQBANKING_API)

/** Destroys all objects stored in the given LIST2 and the list itself
*/
AQBANKING_API void AB_TextKeyDescr_List2_freeAll(AB_TEXTKEY_DESCR_LIST2 *stl);

/** Creates a new object.
*/
AQBANKING_API AB_TEXTKEY_DESCR *AB_TextKeyDescr_new(void);
/** Creates an object from the data in the given GWEN_DB_NODE
*/
AQBANKING_API AB_TEXTKEY_DESCR *AB_TextKeyDescr_fromDb(GWEN_DB_NODE *db);
/** Creates and returns a deep copy of thegiven object.
*/
AQBANKING_API AB_TEXTKEY_DESCR *AB_TextKeyDescr_dup(const AB_TEXTKEY_DESCR*st);
/** Destroys the given object.
*/
AQBANKING_API void AB_TextKeyDescr_free(AB_TEXTKEY_DESCR *st);
/** Increments the usage counter of the given object, so an additional free() is needed to destroy the object.
*/
AQBANKING_API void AB_TextKeyDescr_Attach(AB_TEXTKEY_DESCR *st);
/** Reads data from a GWEN_DB.
*/
AQBANKING_API int AB_TextKeyDescr_ReadDb(AB_TEXTKEY_DESCR *st, GWEN_DB_NODE *db);
/** Stores an object in the given GWEN_DB_NODE
*/
AQBANKING_API int AB_TextKeyDescr_toDb(const AB_TEXTKEY_DESCR*st, GWEN_DB_NODE *db);
/** Returns 0 if this object has not been modified, !=0 otherwise
*/
AQBANKING_API int AB_TextKeyDescr_IsModified(const AB_TEXTKEY_DESCR *st);
/** Sets the modified state of the given object
*/
AQBANKING_API void AB_TextKeyDescr_SetModified(AB_TEXTKEY_DESCR *st, int i);


/**
* Returns the property @ref AB_TEXTKEY_DESCR_Value
*/
AQBANKING_API int AB_TextKeyDescr_GetValue(const AB_TEXTKEY_DESCR *el);
/**
* Set the property @ref AB_TEXTKEY_DESCR_Value
*/
AQBANKING_API void AB_TextKeyDescr_SetValue(AB_TEXTKEY_DESCR *el, int d);

/**
* Returns the property @ref AB_TEXTKEY_DESCR_Name
*/
AQBANKING_API const char *AB_TextKeyDescr_GetName(const AB_TEXTKEY_DESCR *el);
/**
* Set the property @ref AB_TEXTKEY_DESCR_Name
*/
AQBANKING_API void AB_TextKeyDescr_SetName(AB_TEXTKEY_DESCR *el, const char *d);

/**
* Returns the property @ref AB_TEXTKEY_DESCR_Descr
*/
AQBANKING_API const char *AB_TextKeyDescr_GetDescr(const AB_TEXTKEY_DESCR *el);
/**
* Set the property @ref AB_TEXTKEY_DESCR_Descr
*/
AQBANKING_API void AB_TextKeyDescr_SetDescr(AB_TEXTKEY_DESCR *el, const char *d);


#ifdef __cplusplus
} /* __cplusplus */
#endif


#endif /* TEXTKEYDESCR_H */