/usr/include/libwfut-0.2/libwfut/header.h is in libwfut-0.2-dev 0.2.1-2.
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 | // This file may be redistributed and modified only under the terms of
// the GNU Lesser General Public License (See COPYING for details).
// Copyright (C) 2005 - 2007 Simon Goodall
#ifndef LIBWFUT_HEADER_H
#define LIBWFUT_HEADER_H 1
// This file defines the various bits that is needed to build a DLL
#define EXTERN extern
#if defined (WIN32) || defined (_WIN32) || defined( __WIN32__)
#define WINDOWS_BUILD 1
#endif
#if defined(WINDOWS_BUILD) && false
#ifdef BUILD_LIBWFUT_DLL
#define LIBWFUTAPI EXTERN __declspec(dllexport)
#else
#define LIBWFUTAPI EXTERN __declspec(dllimport)
#endif
#else
#define LIBWFUTAPI EXTERN
#endif
#endif // LIBWFUT_HEADER
|