/usr/include/log4c/config-win32.h is in liblog4c-dev 1.2.1-3.
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 | /* $Id$
*
* See the COPYING file for the terms of usage and distribution.
*/
/* This file defines some labels as required for
compiling with Microsoft Visual C++ 6
*/
#ifndef __log4c_config_win32_h
#define __log4c_config_win32_h
#include <time.h>
#include <windows.h>
#include <winsock.h>
#undef LOG4C_API
#ifdef LOG4C_EXPORTS
# define LOG4C_API __declspec(dllexport)
#else
# define LOG4C_API extern __declspec(dllimport)
#endif
#undef LOG4C_DATA
#ifdef LOG4C_EXPORTS
# define LOG4C_DATA __declspec(dllexport)
#else
# define LOG4C_DATA extern __declspec(dllimport)
#endif
/* This is defined to be 'inline' by default,
but with msvc6 undef it so that inlined
functions are just normal functions.
*/
#undef LOG4C_INLINE
#define LOG4C_INLINE
#endif /* __log4c_config_win32_h */
|