blob: 0b1fd68afd61da1a451b9aa9b2dff4db1f41f4bc [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001/* $Id$ */
2/*
3 * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef __PJ_COMPAT_CC_MSVC_H__
21#define __PJ_COMPAT_CC_MSVC_H__
22
23/**
24 * @file cc_msvc.h
25 * @brief Describes Microsoft Visual C compiler specifics.
26 */
27
28#ifndef _MSC_VER
29# error "This header file is only for Visual C compiler!"
30#endif
31
32#define PJ_CC_NAME "msvc"
33#define PJ_CC_VER_1 (_MSC_VER/100)
34#define PJ_CC_VER_2 (_MSC_VER%100)
35#define PJ_CC_VER_3 0
36
37/* Disable CRT deprecation warnings. */
38#if PJ_CC_VER_1 >= 8 && !defined(_CRT_SECURE_NO_DEPRECATE)
39# define _CRT_SECURE_NO_DEPRECATE
40#endif
41#if PJ_CC_VER_1 >= 8 && !defined(_CRT_SECURE_NO_WARNINGS)
42# define _CRT_SECURE_NO_WARNINGS
43 /* The above doesn't seem to work, at least on VS2005, so lets use
44 * this construct as well.
45 */
46# pragma warning(disable: 4996)
47#endif
48
49#pragma warning(disable: 4127) // conditional expression is constant
50#pragma warning(disable: 4611) // not wise to mix setjmp with C++
51#pragma warning(disable: 4514) // unref. inline function has been removed
52#ifdef NDEBUG
53# pragma warning(disable: 4702) // unreachable code
54# pragma warning(disable: 4710) // function is not inlined.
55# pragma warning(disable: 4711) // function selected for auto inline expansion
56#endif
57
58#ifdef __cplusplus
59# define PJ_INLINE_SPECIFIER inline
60#else
61# define PJ_INLINE_SPECIFIER static __inline
62#endif
63
64#define PJ_EXPORT_DECL_SPECIFIER __declspec(dllexport)
65#define PJ_EXPORT_DEF_SPECIFIER __declspec(dllexport)
66#define PJ_IMPORT_DECL_SPECIFIER __declspec(dllimport)
67
68#define PJ_THREAD_FUNC
69#define PJ_NORETURN __declspec(noreturn)
70#define PJ_ATTR_NORETURN
71
72#define PJ_HAS_INT64 1
73
74typedef __int64 pj_int64_t;
75typedef unsigned __int64 pj_uint64_t;
76
77#define PJ_INT64(val) val##i64
78#define PJ_UINT64(val) val##ui64
79#define PJ_INT64_FMT "I64"
80
81#define PJ_UNREACHED(x)
82
83#define PJ_ALIGN_DATA(declaration, alignment) __declspec(align(alignment)) declaration
84
85
86#endif /* __PJ_COMPAT_CC_MSVC_H__ */
87