/usr/include/aqbanking5/aqbanking/jobeutransfer_be.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 | /***************************************************************************
$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_JOBEUTRANSFER_BE_H
#define AQBANKING_JOBEUTRANSFER_BE_H
#include <aqbanking/job.h>
#include <aqbanking/jobeutransfer.h>
/** @addtogroup G_AB_JOBS_XFER_EU
*
*/
/*@{*/
/** @name Backend Functions
*
* Functions in this group are only to be called by banking backends.
*/
/*@{*/
/**
* Set the country info list (containing information about valid destination
* countries and transfer limits per country).
* This function takes over the given list and all its members.
*/
AQBANKING_API
void AB_JobEuTransfer_SetCountryInfoList(AB_JOB *j,
AB_EUTRANSFER_INFO_LIST *l);
/**
* Tell AqBanking whether it is allowed to specify the IBAN for the
* destination account.
*/
AQBANKING_API
void AB_JobEuTransfer_SetIbanAllowed(AB_JOB *j, int b);
/*@}*/
/*@}*/ /* addtogroup */
#endif
|