/usr/include/aqbanking5/aqbanking/error.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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | /***************************************************************************
$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_ERROR_H
#define AQBANKING_ERROR_H
#include <aqbanking/system.h>
#include <gwenhywfar/error.h>
#ifdef AQBANKING_IS_SUBPROJECT
# define AQBANKING_API
# define AQBANKING_EXPORT
# define AQBANKING_NOEXPORT
#else
# ifdef BUILDING_AQBANKING
# /* building AqBanking */
# if AQBANKING_SYS_IS_WINDOWS
# /* for windows */
# ifdef __declspec
# define AQBANKING_API __declspec (dllexport)
# else /* if __declspec */
# define AQBANKING_API
# endif /* if NOT __declspec */
# else
# /* for non-win32 */
# ifdef GCC_WITH_VISIBILITY_ATTRIBUTE
# define AQBANKING_API __attribute__((visibility("default")))
# else
# define AQBANKING_API
# endif
# endif
# else
# /* not building AqBanking */
# if AQBANKING_SYS_IS_WINDOWS
# /* for windows */
# ifdef __declspec
# define AQBANKING_API __declspec (dllimport)
# else /* if __declspec */
# define AQBANKING_API
# endif /* if NOT __declspec */
# else
# /* for non-win32 */
# define AQBANKING_API
# endif
# endif
# ifdef GCC_WITH_VISIBILITY_ATTRIBUTE
# define AQBANKING_EXPORT __attribute__((visibility("default")))
# define AQBANKING_NOEXPORT __attribute__((visibility("hidden")))
# else
# define AQBANKING_EXPORT
# define AQBANKING_NOEXPORT
# endif
#endif
#ifndef AQBANKING_NOWARN_DEPRECATED
# ifdef __GNUC__
# define AQBANKING_DEPRECATED __attribute((__deprecated__))
# else
# define AQBANKING_DEPRECATED
# endif
# else
# define AQBANKING_DEPRECATED
#endif
#define AQBANKING_LOGDOMAIN "aqbanking"
/** @defgroup AB_ERROR Error Codes
* @ingroup G_AB_C_INTERFACE
*/
/*@{*/
#define AB_ERROR_OFFSET GWEN_ERROR_USEROFFSET
#define AB_ERROR_BAD_CONFIG_FILE (AB_ERROR_OFFSET-1)
#define AB_ERROR_NETWORK (AB_ERROR_OFFSET-2)
#define AB_ERROR_EMPTY (AB_ERROR_OFFSET-3)
#define AB_ERROR_INDIFFERENT (AB_ERROR_OFFSET-4)
#define AB_ERROR_UNKNOWN_ACCOUNT (AB_ERROR_OFFSET-5)
#define AB_ERROR_NOT_INIT (AB_ERROR_OFFSET-6)
#define AB_ERROR_SECURITY (AB_ERROR_OFFSET-7)
#define AB_ERROR_PLUGIN_MISSING (AB_ERROR_OFFSET-8)
#define AB_ERROR_USER1 (AB_ERROR_OFFSET-50)
#define AB_ERROR_USER2 (AB_ERROR_OFFSET-51)
#define AB_ERROR_USER3 (AB_ERROR_OFFSET-52)
#define AB_ERROR_USER4 (AB_ERROR_OFFSET-53)
#define AB_ERROR_USEROFFSET (AB_ERROR_OFFSET-100)
/*@}*/
#endif /* AQBANKING_ERROR_H */
|