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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkWin32Header.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkWin32Header - manage Windows system differences
// .SECTION Description
// The vtkWin32Header captures some system differences between Unix and
// Windows operating systems.
#ifndef __vtkWIN32Header_h
#define __vtkWIN32Header_h
#ifndef __VTK_SYSTEM_INCLUDES__INSIDE
Do_not_include_vtkWin32Header_directly__vtkSystemIncludes_includes_it;
#endif
#include "vtkConfigure.h"
//
// Windows specific stuff------------------------------------------
#if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__)
// define strict header for windows
#ifndef STRICT
#define STRICT
#endif
#ifdef VTK_USE_ANSI_STDLIB
#ifndef NOMINMAX
#define NOMINMAX
#endif
#endif
#endif
// Never include the windows header here when building VTK itself.
#if defined(VTK_IN_VTK)
# undef VTK_INCLUDE_WINDOWS_H
#endif
#if defined(_WIN32)
// Include the windows header here only if requested by user code.
# if defined(VTK_INCLUDE_WINDOWS_H)
# include <windows.h>
// Define types from the windows header file.
typedef DWORD vtkWindowsDWORD;
typedef PVOID vtkWindowsPVOID;
typedef LPVOID vtkWindowsLPVOID;
typedef HANDLE vtkWindowsHANDLE;
typedef LPTHREAD_START_ROUTINE vtkWindowsLPTHREAD_START_ROUTINE;
# else
// Define types from the windows header file.
typedef unsigned long vtkWindowsDWORD;
typedef void* vtkWindowsPVOID;
typedef vtkWindowsPVOID vtkWindowsLPVOID;
typedef vtkWindowsPVOID vtkWindowsHANDLE;
typedef vtkWindowsDWORD (__stdcall *vtkWindowsLPTHREAD_START_ROUTINE)(vtkWindowsLPVOID);
# endif
// Enable workaround for windows header name mangling.
// See VTK/Utilities/Upgrading/README.WindowsMangling.txt for details.
# define VTK_WORKAROUND_WINDOWS_MANGLE
#endif
#if defined(_MSC_VER)
// Enable MSVC compiler warning messages that are useful but off by default.
# pragma warning ( default : 4263 ) /* no override, call convention differs */
// Disable MSVC compiler warning messages that often occur in valid code.
# if !defined(VTK_DISPLAY_WIN32_WARNINGS)
# pragma warning ( disable : 4097 ) /* typedef is synonym for class */
# pragma warning ( disable : 4127 ) /* conditional expression is constant */
# pragma warning ( disable : 4244 ) /* possible loss in conversion */
# pragma warning ( disable : 4251 ) /* missing DLL-interface */
# pragma warning ( disable : 4305 ) /* truncation from type1 to type2 */
# pragma warning ( disable : 4309 ) /* truncation of constant value */
# pragma warning ( disable : 4514 ) /* unreferenced inline function */
# pragma warning ( disable : 4706 ) /* assignment in conditional expression */
# pragma warning ( disable : 4710 ) /* function not inlined */
# pragma warning ( disable : 4786 ) /* identifier truncated in debug info */
# endif
#endif
// MSVC 6.0 in release mode will warn about code it produces with its
// optimizer. Disable the warnings specifically for this
// configuration. Real warnings will be revealed by a debug build or
// by other compilers.
#if defined(_MSC_VER) && (_MSC_VER < 1300) && defined(NDEBUG)
# pragma warning ( disable : 4701 ) /* Variable may be used uninitialized. */
# pragma warning ( disable : 4702 ) /* Unreachable code. */
#endif
#if defined(WIN32) && defined(VTK_BUILD_SHARED_LIBS)
#define VTK_EXPORT __declspec( dllexport )
#if defined(vtkCommon_EXPORTS)
#define VTK_COMMON_EXPORT __declspec( dllexport )
#else
#define VTK_COMMON_EXPORT __declspec( dllimport )
#endif
#if defined(vtkFiltering_EXPORTS)
#define VTK_FILTERING_EXPORT __declspec( dllexport )
#else
#define VTK_FILTERING_EXPORT __declspec( dllimport )
#endif
#if defined(vtkImaging_EXPORTS)
#define VTK_IMAGING_EXPORT __declspec( dllexport )
#else
#define VTK_IMAGING_EXPORT __declspec( dllimport )
#endif
#if defined(vtkGenericFiltering_EXPORTS)
#define VTK_GENERIC_FILTERING_EXPORT __declspec( dllexport )
#else
#define VTK_GENERIC_FILTERING_EXPORT __declspec( dllimport )
#endif
#if defined(vtkGraphics_EXPORTS)
#define VTK_GRAPHICS_EXPORT __declspec( dllexport )
#else
#define VTK_GRAPHICS_EXPORT __declspec( dllimport )
#endif
#if defined(vtkIO_EXPORTS)
#define VTK_IO_EXPORT __declspec( dllexport )
#else
#define VTK_IO_EXPORT __declspec( dllimport )
#endif
#if defined(vtkRendering_EXPORTS)
#define VTK_RENDERING_EXPORT __declspec( dllexport )
#else
#define VTK_RENDERING_EXPORT __declspec( dllimport )
#endif
#if defined(vtkVolumeRendering_EXPORTS)
#define VTK_VOLUMERENDERING_EXPORT __declspec( dllexport )
#else
#define VTK_VOLUMERENDERING_EXPORT __declspec( dllimport )
#endif
#if defined(vtkHybrid_EXPORTS)
#define VTK_HYBRID_EXPORT __declspec( dllexport )
#else
#define VTK_HYBRID_EXPORT __declspec( dllimport )
#endif
#if defined(vtkWidgets_EXPORTS)
#define VTK_WIDGETS_EXPORT __declspec( dllexport )
#else
#define VTK_WIDGETS_EXPORT __declspec( dllimport )
#endif
#if defined(vtkParallel_EXPORTS)
#define VTK_PARALLEL_EXPORT __declspec( dllexport )
#else
#define VTK_PARALLEL_EXPORT __declspec( dllimport )
#endif
#else
#define VTK_COMMON_EXPORT
#define VTK_FILTERING_EXPORT
#define VTK_GENERIC_FILTERING_EXPORT
#define VTK_GRAPHICS_EXPORT
#define VTK_IMAGING_EXPORT
#define VTK_IO_EXPORT
#define VTK_RENDERING_EXPORT
#define VTK_VOLUMERENDERING_EXPORT
#define VTK_HYBRID_EXPORT
#define VTK_WIDGETS_EXPORT
#define VTK_PARALLEL_EXPORT
#define VTK_EXPORT
#endif
// this is exclusively for the tcl Init functions
#if defined(WIN32)
#define VTK_TK_EXPORT __declspec( dllexport )
#else
#define VTK_TK_EXPORT
#endif
#endif
|