/usr/include/aqbanking5/aqbanking/balance.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 | /***************************************************************************
$RCSfile$
-------------------
cvs : $Id$
begin : Mon Apr 05 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_BALANCE_H
#define AQBANKING_BALANCE_H
#include <gwenhywfar/gwentime.h>
#include <aqbanking/value.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct AB_BALANCE AB_BALANCE;
AQBANKING_API
AB_BALANCE *AB_Balance_new(const AB_VALUE *v, const GWEN_TIME *t);
AQBANKING_API
AB_BALANCE *AB_Balance_fromDb(GWEN_DB_NODE *db);
AQBANKING_API
int AB_Balance_toDb(const AB_BALANCE *b, GWEN_DB_NODE *db);
AQBANKING_API
AB_BALANCE *AB_Balance_dup(const AB_BALANCE *b);
AQBANKING_API
void AB_Balance_free(AB_BALANCE *b);
AQBANKING_API
const AB_VALUE *AB_Balance_GetValue(const AB_BALANCE *b);
AQBANKING_API
void AB_Balance_SetValue(AB_BALANCE *b, const AB_VALUE *v);
AQBANKING_API
const GWEN_TIME *AB_Balance_GetTime(const AB_BALANCE *b);
#ifdef __cplusplus
}
#endif
#endif /* AQBANKING_BALANCE_H */
|