/usr/include/aqbanking5/aqbanking/jobgetdatedtransfers.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 | /***************************************************************************
begin : Mon Mar 01 2004
copyright : (C) 2004-2013 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* This file is part of the project "AqBanking". *
* Please see toplevel file COPYING of that project for license details. *
***************************************************************************/
#ifndef AQBANKING_JOBGETDATEDTRANSFERS_H
#define AQBANKING_JOBGETDATEDTRANSFERS_H
#include <aqbanking/job.h>
#include <aqbanking/transaction.h>
/** @addtogroup G_AB_JOBS_DATED_TRANSFER_GET
*
*/
/*@{*/
#ifdef __cplusplus
extern "C" {
#endif
/**
* Creates a job which retrieves a list of currently active dated transfers
* for the given account.
* @param a account for which you want the dated transfers
*/
AQBANKING_API
AB_JOB *AB_JobGetDatedTransfers_new(AB_ACCOUNT *a);
/** @deprecated */
AQBANKING_API AQBANKING_DEPRECATED
AB_TRANSACTION_LIST2*
AB_JobGetDatedTransfers_GetDatedTransfers(const AB_JOB *j);
#ifdef __cplusplus
}
#endif
/*@}*/
#endif /* AQBANKING_JOBGETDATEDTRANSFERS_H */
|