/usr/include/tilp2/export4.h is in libticonv-dev 1.1.4-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 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 | /* Hey EMACS -*- linux-c -*- */
/* $Id$ */
/* libticonv - TI-charset <-> UTF-16 conversion routines
* Copyright (C) 1999-2005 Romain Lievin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __TICONV_EXPORT__
#define __TICONV_EXPORT__
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
/*
Calling convention: default
*/
# define TICALL
/*
Symbols exporting
*/
#if defined(HAVE_FVISIBILITY) // GCC 4.0 has introduced the -fvisibility flag (similar to declspec)
# define TIEXPORT4 __attribute__ ((visibility("default")))
#elif defined(__WIN32__)
# if defined(__BORLANDC__) // BCC32 v5.x (or C++Builder)
# if __BORLANDC__ >= 0x0500 // (c) 2001 Thomas Wolf (two@chello.at)
# define TIEXPORT4
# else
# define TIEXPORT4
# endif
# elif defined(_MSC_VER) // MSVC 5.0 mini
# if defined(TICONV_EXPORTS)
# define TIEXPORT4 __declspec(dllexport)
# else
# define TIEXPORT4 __declspec(dllimport)
# endif
# elif defined(__MINGW32__) // MinGW - GCC for Windows, (c) 2002 Kevin Kofler
# if defined(TICONV_EXPORTS) // defined by the configure script
# define TIEXPORT4 __declspec(dllexport)
# else
# define TIEXPORT4 __declspec(dllimport)
# endif
# endif
#else
# define TIEXPORT4 // default
#endif
#ifdef __cplusplus
}
#endif
/*
Symbols deprecating
*/
#ifndef TILIBS_DEPRECATED
# ifdef __GNUC__
# if (__GNUC__>3) || (__GNUC__==3 && __GNUC_MINOR__>=3)
# define TILIBS_DEPRECATED __attribute__((deprecated))
# else /* not GCC >= 3.3 */
# define TILIBS_DEPRECATED
# endif /* GCC >= 3.3 */
# else /* not __GNUC__ */
# ifdef _MSC_VER
# if _MSC_VER >= 1300
# define TILIBS_DEPRECATED __declspec(deprecated)
# else /* not _MSC_VER >= 1300 */
# define TILIBS_DEPRECATED
# endif /* _MSC_VER >= 1300 */
# else /* not _MSC_VER */
# define TILIBS_DEPRECATED
# endif /* _MSC_VER */
# endif /* __GNUC__ */
#endif /* TILIBS_DEPRECATED */
#endif
|