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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/*
A* -------------------------------------------------------------------
B* This file contains source code for the PyMOL computer program
C* Copyright (c) Schrodinger, LLC.
D* -------------------------------------------------------------------
E* It is unlawful to modify or remove this copyright notice.
F* -------------------------------------------------------------------
G* Please see the accompanying LICENSE file for further information.
H* -------------------------------------------------------------------
I* Additional authors of this source file include:
-*
-*
-*
Z* -------------------------------------------------------------------
*/
#ifndef _H_os_predef
#define _H_os_predef
/* Macros used by Fortify source in GCC 4.1.x are incompatible with
PyMOL's Feedback system... */
#ifdef _FORTIFY_SOURCE
#undef _FORTIFY_SOURCE
#endif
/* BEGIN PROPRIETARY CODE SEGMENT (see disclaimer in "os_proprietary.h") */
#ifdef WIN32
#define PATH_SEP "\\"
#else
#define PATH_SEP "/"
#endif
/* commercial product */
#ifdef PYMOL_COMM
#ifndef _PYMOL_IP_SPLASH
#define _PYMOL_IP_SPLASH
#endif
#ifndef _PYMOL_IP_EXTRAS
#define _PYMOL_IP_EXTRAS
#endif
#endif
/* collaboration product (placarded) */
#ifdef PYMOL_COLL
#ifndef _PYMOL_IP_SPLASH
#define _PYMOL_IP_SPLASH
#endif
#ifndef _PYMOL_IP_EXTRAS
#define _PYMOL_IP_EXTRAS
#endif
#endif
/* educational product (placarded) */
#ifdef PYMOL_EDU
#ifndef _PYMOL_IP_SPLASH
#define _PYMOL_IP_SPLASH
#endif
#ifndef _PYMOL_IP_EXTRAS
#define _PYMOL_IP_EXTRAS
#endif
#endif
/* evaluation product (placarded) */
#ifdef PYMOL_EVAL
#ifndef _PYMOL_IP_SPLASH
#define _PYMOL_IP_SPLASH
#endif
#endif
/* END PROPRIETARY CODE SEGMENT */
#include <stddef.h>
#if defined(_MSC_VER)
// conversion from '...' to '...', possible loss of data
#pragma warning (disable:4244)
// conversion from 'size_t' to '...', possible loss of data
#pragma warning (disable:4267)
// truncation from 'double' to 'float'
#pragma warning (disable:4305)
// forcing value to bool (performance warning)
#pragma warning (disable:4800)
// '_snprintf', 'sscanf', 'sprintf', 'strcpy', 'strncpy': This function or
// variable may be unsafe. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.
#pragma warning (disable:4996)
// TODO: remove, use std::snprintf instead (C++11)
#if !defined(snprintf) && (_MSC_VER < 1900)
#define snprintf sprintf_s
#endif
#endif
#include "ov_types.h"
// alternative to std::swap if references are not allowed (e.g. bit fields)
#define SWAP_NOREF(a, b) {auto _t=(a);(a)=(b);(b)=_t;}
#endif
|