~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.2.1/pjlib/include/pj/compat/cc_msvc.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: cc_msvc.h 4624 2013-10-21 06:37:30Z ming $ */
 
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
#define PJ_ATTR_MAY_ALIAS       
 
72
 
 
73
#define PJ_HAS_INT64    1
 
74
 
 
75
typedef __int64 pj_int64_t;
 
76
typedef unsigned __int64 pj_uint64_t;
 
77
 
 
78
#define PJ_INT64(val)           val##i64
 
79
#define PJ_UINT64(val)          val##ui64
 
80
#define PJ_INT64_FMT            "I64"
 
81
 
 
82
#define PJ_UNREACHED(x)         
 
83
 
 
84
#define PJ_ALIGN_DATA(declaration, alignment) __declspec(align(alignment)) declaration
 
85
 
 
86
 
 
87
#endif  /* __PJ_COMPAT_CC_MSVC_H__ */
 
88