/usr/include/aqbanking5/aqbanking/ab_accountqueue.h is in libaqbanking34-dev 5.3.5beta-2.
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 | /**********************************************************
* This file has been automatically created by "typemaker2"
* from the file "ab_accountqueue.xml".
* Please do not edit this file, all changes will be lost.
* Better edit the mentioned source file instead.
**********************************************************/
#ifndef AB_ACCOUNTQUEUE_H
#define AB_ACCOUNTQUEUE_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/banking.h>
#include <aqbanking/ab_jobqueue.h>
typedef struct AB_ACCOUNTQUEUE AB_ACCOUNTQUEUE;
GWEN_LIST_FUNCTION_LIB_DEFS(AB_ACCOUNTQUEUE, AB_AccountQueue, AQBANKING_API)
GWEN_INHERIT_FUNCTION_LIB_DEFS(AB_ACCOUNTQUEUE, AQBANKING_API)
/* post-headers */
#include <aqbanking/ab_accountqueuefns.h>
/** Constructor. */
AQBANKING_API AB_ACCOUNTQUEUE *AB_AccountQueue_new(void);
/** Destructor. */
AQBANKING_API void AB_AccountQueue_free(AB_ACCOUNTQUEUE *p_struct);
AQBANKING_API void AB_AccountQueue_Attach(AB_ACCOUNTQUEUE *p_struct);
AQBANKING_API AB_ACCOUNTQUEUE *AB_AccountQueue_dup(const AB_ACCOUNTQUEUE *p_struct);
/** Getter.
* Use this function to get the member "account"
*/
AQBANKING_API AB_ACCOUNT *AB_AccountQueue_GetAccount(const AB_ACCOUNTQUEUE *p_struct);
/** Getter.
* Use this function to get the member "jobQueueList"
*/
AQBANKING_API AB_JOBQUEUE_LIST *AB_AccountQueue_GetJobQueueList(const AB_ACCOUNTQUEUE *p_struct);
/** Setter.
* Use this function to set the member "account"
*/
AQBANKING_API void AB_AccountQueue_SetAccount(AB_ACCOUNTQUEUE *p_struct, AB_ACCOUNT *p_src);
/** Setter.
* Use this function to set the member "jobQueueList"
*/
AQBANKING_API void AB_AccountQueue_SetJobQueueList(AB_ACCOUNTQUEUE *p_struct, AB_JOBQUEUE_LIST *p_src);
/* list1 functions */
AQBANKING_API AB_ACCOUNTQUEUE_LIST *AB_AccountQueue_List_dup(const AB_ACCOUNTQUEUE_LIST *p_src);
#ifdef __cplusplus
}
#endif
#endif
|