]> granicus.if.org Git - graphviz/commitdiff
Replace WIN32 with _WIN32 in cdt, cgraph, pathplan
authorErwin Janssen <erwinjanssen@outlook.com>
Sun, 30 Oct 2016 22:10:21 +0000 (23:10 +0100)
committerErwin Janssen <erwinjanssen@outlook.com>
Wed, 7 Dec 2016 13:52:37 +0000 (14:52 +0100)
WIN32 is defined by the user, _WIN32 is set by the compiler to indicate
the platform. It is better to use the latter.
This commit replaces WIN32 with _WIN32 in source and header files of
lib/cdt, lib/cgraph and lib/pathplan.

lib/cdt/cdt.h
lib/cgraph/io.c
lib/pathplan/pathutil.h
lib/pathplan/vis.h

index 2c8b294aeed31d6c2c48a4c3388d2d9fbf4886ad..2a770777bb00c8a31ff494642e86ab0f679db1f3 100644 (file)
@@ -15,7 +15,7 @@ extern "C" {
 #include <stddef.h>    /* size_t */
 #include <string.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #undef __EXPORT__
 #undef __IMPORT__
 #define __EXPORT__  __declspec (dllexport)
index 8164379dc24873ff807203b1da9e0ebe04a2c73a..3910f44b455d2c2d99a883908016a956004b99bd 100644 (file)
@@ -13,7 +13,7 @@
 
 #include <stdio.h>
 #include <cghdr.h>
-#if defined(WIN32)
+#if defined(_WIN32)
 #include <io.h>
 #endif
 
index 36b17f57d8e8cf266fdb9fe5bd227082583a1fe4..c1e8be7d0de443e1e1237bbf957a97bd8712b83e 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
 #endif
 
 /*visual studio*/
-#ifdef WIN32
+#ifdef _WIN32
 #ifndef PATHPLAN_EXPORTS
 #define extern __declspec(dllimport)
 #endif
index e6c44f3ac273ba9f4ac1a492de8f13ec2f6924b0..96022d3d41e9e9abd9b59dccd9f851b33b49822a 100644 (file)
@@ -46,7 +46,7 @@ extern "C" {
        /* this is computed from the above */
        array2 vis;
     };
-#ifdef WIN32
+#ifdef _WIN32
 #ifndef PATHPLAN_EXPORTS
 #define extern __declspec(dllimport)
 #endif