Skip to content
Snippets Groups Projects
Commit a5180063 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

examples: check for _WIN32, not WIN32

parent f8ec5abe
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@
#include <vtkmyConfigure.h>
#if defined(WIN32) && !defined(VTKMY_STATIC)
#if defined(_WIN32) && !defined(VTKMY_STATIC)
#if defined(vtkmyCommon_EXPORTS)
#define VTK_MY_COMMON_EXPORT __declspec( dllexport )
#else
......
......@@ -22,7 +22,7 @@
#include <vtkmyConfigure.h>
#if defined(WIN32) && !defined(VTKMY_STATIC)
#if defined(_WIN32) && !defined(VTKMY_STATIC)
#if defined(vtkmyImaging_EXPORTS)
#define VTK_MY_IMAGING_EXPORT __declspec( dllexport )
#else
......
......@@ -22,7 +22,7 @@
#include <vtkmyConfigure.h>
#if defined(WIN32) && !defined(VTKMY_STATIC)
#if defined(_WIN32) && !defined(VTKMY_STATIC)
#if defined(vtkmyUnsorted_EXPORTS)
#define VTK_MY_UNSORTED_EXPORT __declspec( dllexport )
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment