forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefs.h
More file actions
61 lines (52 loc) · 1.63 KB
/
Copy pathdefs.h
File metadata and controls
61 lines (52 loc) · 1.63 KB
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
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <[email protected]>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef CPPCMS_DEFS_H
#define CPPCMS_DEFS_H
#if defined(__WIN32) || defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__)
# if defined(DLL_EXPORT)
# if defined(CPPCMS_SOURCE) || defined(CPPCMS_LOCALE_SOURCE)
# define CPPCMS_API __declspec(dllexport)
# else
# define CPPCMS_API __declspec(dllimport)
# endif
# else
# define CPPCMS_API
# endif
#else // ELF BINARIES
# define CPPCMS_API
#endif
#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32)) && !defined(__CYGWIN__)
#define CPPCMS_WIN_NATIVE
#endif
#if defined(__CYGWIN__)
#define CPPCMS_CYGWIN
#endif
#if defined(CPPCMS_WIN_NATIVE) || defined(CPPCMS_CYGWIN)
#define CPPCMS_WIN32
#endif
#if !defined(CPPCMS_WIN_NATIVE)
#define CPPCMS_POSIX
#endif
#if defined __GNUC__ || defined __clang__
#define CPPCMS_DEPRECATED __attribute__((deprecated))
#elif defined _MSC_VER
#define CPPCMS_DEPRECATED __declspec(deprecated)
#else
#define CPPCMS_DEPRECATED
#endif
#if defined __GNUC__ || defined __clang__
#define CPPCMS_UNUSED __attribute__((unused))
#else
#define CPPCMS_UNUSED
#endif
#if defined __clang__
#define CPPCMS_UNUSED_MEMBER __attribute__((unused))
#else
#define CPPCMS_UNUSED_MEMBER
#endif
#endif /// CPPCMS_DEFS_H