/usr/include/aqbanking5/aqbanking/msgengine.h is in libaqbanking34-dev 5.4.3beta-2+b1.
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 | /***************************************************************************
$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_MSGENGINE_H
#define AQBANKING_MSGENGINE_H
#include <aqbanking/error.h> /* for AQBANKING_API */
#include <gwenhywfar/msgengine.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @file aqbanking/msgengine.h
*
* This message engine implements a few new types:
* <ul>
* <li>byte</li>
* <li>word (bigEndian="1")</li>
* <li>dword (bigEndian="1")</li>
* <li>bytes (size="-1") </li>
* <li>tlv (tlvType="BER"||"SIMPLE") </li>
* </ul>
*/
AQBANKING_API
GWEN_MSGENGINE *AB_MsgEngine_new(void);
#ifdef __cplusplus
}
#endif
#endif /* AQBANKING_MSGENGINE_H */
|