blob: b5a0e08ee32d84db71dfb826c012e1b679dddffc [file] [log] [blame]
Benny Prijono5dcb38d2005-11-21 01:55:47 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijono5dcb38d2005-11-21 01:55:47 +00005 *
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
Benny Prijono33723ce2005-11-22 01:05:59 +000032#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
Benny Prijonoed811d72006-03-10 12:57:12 +000037/* Disable CRT deprecation warnings. */
Benny Prijono08b53092007-01-16 03:30:42 +000038#if PJ_CC_VER_1 >= 8 && !defined(_CRT_SECURE_NO_DEPRECATE)
Benny Prijonoed811d72006-03-10 12:57:12 +000039# define _CRT_SECURE_NO_DEPRECATE
40#endif
41
Benny Prijono4f2be312005-11-21 17:01:06 +000042#pragma warning(disable: 4127) // conditional expression is constant
43#pragma warning(disable: 4611) // not wise to mix setjmp with C++
44#pragma warning(disable: 4514) // unref. inline function has been removed
45#ifdef NDEBUG
46# pragma warning(disable: 4702) // unreachable code
47# pragma warning(disable: 4710) // function is not inlined.
48# pragma warning(disable: 4711) // function selected for auto inline expansion
49#endif
Benny Prijono5dcb38d2005-11-21 01:55:47 +000050
Benny Prijono4f2be312005-11-21 17:01:06 +000051#ifdef __cplusplus
52# define PJ_INLINE_SPECIFIER inline
53#else
54# define PJ_INLINE_SPECIFIER static __inline
55#endif
56
Benny Prijono8ab968f2007-07-20 08:08:30 +000057#define PJ_EXPORT_DECL_SPECIFIER __declspec(dllexport)
58#define PJ_EXPORT_DEF_SPECIFIER __declspec(dllexport)
59#define PJ_IMPORT_DECL_SPECIFIER __declspec(dllimport)
60
Benny Prijono4f2be312005-11-21 17:01:06 +000061#define PJ_THREAD_FUNC
62#define PJ_NORETURN __declspec(noreturn)
63#define PJ_ATTR_NORETURN
64
65#define PJ_HAS_INT64 1
66
Benny Prijono5dcb38d2005-11-21 01:55:47 +000067typedef __int64 pj_int64_t;
68typedef unsigned __int64 pj_uint64_t;
69
Benny Prijonoae44a762006-06-28 15:26:43 +000070#define PJ_INT64(val) val##i64
71#define PJ_UINT64(val) val##ui64
72#define PJ_INT64_FMT "I64"
Benny Prijonoac9d1422006-01-18 23:32:27 +000073
74
Benny Prijono5dcb38d2005-11-21 01:55:47 +000075#endif /* __PJ_COMPAT_CC_MSVC_H__ */