/usr/include/aqbanking5/aqofxconnect/aqofxconnect.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 | /***************************************************************************
begin : Mon Mar 01 2004
copyright : (C) 2004 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* Please see toplevel file COPYING for license details *
***************************************************************************/
#ifndef AQOFXCONNECT_AQOFXCONNECT_H
#define AQOFXCONNECT_AQOFXCONNECT_H
#include <aqbanking/system.h>
#ifdef BUILDING_AQOFXCONNECT
# /* building AqOFXCONNECT */
# if AQBANKING_SYS_IS_WINDOWS
# /* for windows */
# ifdef __declspec
# define AQOFXCONNECT_API __declspec (dllexport)
# else /* if __declspec */
# define AQOFXCONNECT_API
# endif /* if NOT __declspec */
# else
# /* for non-win32 */
# ifdef GCC_WITH_VISIBILITY_ATTRIBUTE
# define AQOFXCONNECT_API __attribute__((visibility("default")))
# else
# define AQOFXCONNECT_API
# endif
# endif
#else
# /* not building AqOFXCONNECT */
# if AQBANKING_SYS_IS_WINDOWS
# /* for windows */
# ifdef __declspec
# define AQOFXCONNECT_API __declspec (dllimport)
# else /* if __declspec */
# define AQOFXCONNECT_API
# endif /* if NOT __declspec */
# else
# /* for non-win32 */
# define AQOFXCONNECT_API
# endif
#endif
#define AQOFXCONNECT_LOGDOMAIN "aqofxconnect"
#endif /* AQOFXCONNECT_AQOFXCONNECT_H */
|