/usr/include/gwenhywfar4/gwen-gui-fox16/api.h is in libgwenhywfar60-dev 4.10.0beta-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 | /***************************************************************************
copyright : (C) 2004 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* Please see toplevel file COPYING for license details *
***************************************************************************/
#ifndef GWEN_GUI_FOX16_API_H
#define GWEN_GUI_FOX16_API_H
#include <gwenhywfar/types.h>
#if defined __GNUC__ && (! defined (__sun)) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
# ifdef BUILDING_FOX16_GUI
/* building Fox16 */
# if GWENHYWFAR_SYS_IS_WINDOWS
/* for windows */
# ifdef __declspec
# define FOX16GUI_API __declspec (dllexport)
# else /* if __declspec */
# define FOX16GUI_API
# endif /* if NOT __declspec */
# else
/* for non-win32 */
# ifdef GCC_WITH_VISIBILITY_ATTRIBUTE
# define FOX16GUI_API __attribute__((visibility("default")))
# else
# define FOX16GUI_API
# endif
# endif
# else
/* not building Fox16 */
# if GWENHYWFAR_SYS_IS_WINDOWS
/* for windows */
# ifdef __declspec
# define FOX16GUI_API __declspec (dllimport)
# else /* if __declspec */
# define FOX16GUI_API
# endif /* if NOT __declspec */
# else
/* for non-win32 */
# define FOX16GUI_API
# endif
# endif
#endif
#endif
|