/usr/include/aqbanking5/aqbanking/transactionfns.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 | /***************************************************************************
$RCSfile$
-------------------
cvs : $Id$
begin : Mon Mar 01 2004
copyright : (C) 2004 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_TRANSACTIONFNS_H
#define AQBANKING_TRANSACTIONFNS_H
#include <aqbanking/transaction.h>
#include <aqbanking/account.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @return 0 if both transactions are equal, 1 otherwise (and -1 on error)
*/
AQBANKING_API
int AB_Transaction_Compare(const AB_TRANSACTION *t1,
const AB_TRANSACTION *t0);
/**
* Fills "local account" parts of the given transaction with the data
* from the given account. In particular, the following fields are set
* through this function: SetLocalCountry, SetRemoteCountry,
* SetLocalBankCode, SetLocalAccountNumber, and SetLocalName.
*/
AQBANKING_API
void AB_Transaction_FillLocalFromAccount(AB_TRANSACTION *t, const AB_ACCOUNT *a);
#ifdef __cplusplus
} /* __cplusplus */
#endif
#endif /* AQBANKING_TRANSACTIONFNS_H */
|