/usr/include/IceUtil/ResourceConfig.h is in libzeroc-ice-dev 3.7.0-5.
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 | // **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef ICE_UTIL_RESOURCE_CONFIG_H
#define ICE_UTIL_RESOURCE_CONFIG_H
#include "winver.h"
#define ICE_VERSION 3,7,0,0
#define ICE_STRING_VERSION "3.7.0\0"
#define ICE_SO_VERSION "37\0"
#define ICE_COMPANY_NAME "ZeroC, Inc.\0"
#define ICE_COPYRIGHT "\251 2003-2017 ZeroC, Inc.\0"
#define ICE_PRODUCT_NAME "Ice\0"
#ifdef ICE_CPP11_MAPPING
# if defined(_DEBUG)
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwp++11D"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "++11D"
# endif
# else
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwp++11"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "++11"
# endif
# endif
#else
# if defined(_DEBUG)
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwpD"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "D"
# endif
# else
# if defined(ICE_OS_UWP)
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "uwp"
# else
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION ""
# endif
# endif
#endif
#ifndef DEBUG
# define VER_DEBUG 0
#else
# define VER_DEBUG VS_FF_DEBUG
#endif
#endif
|