summaryrefslogtreecommitdiffstats
path: root/src/io
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2018-09-30 21:47:39 +0000
committerEduard Braun <eduard.braun2@gmx.de>2018-10-01 22:50:12 +0000
commit172dbd2b94199731c1bbd2f789e55535188ade5c (patch)
tree907ca31a726661673f72eb35c2a8431e0dc57873 /src/io
parentconfig.h - remove all defines we never use (diff)
downloadinkscape-172dbd2b94199731c1bbd2f789e55535188ade5c.tar.gz
inkscape-172dbd2b94199731c1bbd2f789e55535188ade5c.zip
Use _WIN32 instead of WIN32
The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
Diffstat (limited to 'src/io')
-rw-r--r--src/io/resource.cpp4
-rw-r--r--src/io/sys.cpp4
-rw-r--r--src/io/uristream.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/io/resource.cpp b/src/io/resource.cpp
index 72cf3c2f9..fd110492e 100644
--- a/src/io/resource.cpp
+++ b/src/io/resource.cpp
@@ -20,7 +20,7 @@
#include "config.h"
#endif
-#ifdef WIN32
+#ifdef _WIN32
#include <shlobj.h> // for SHGetSpecialFolderLocation
#endif
@@ -378,7 +378,7 @@ char *profile_path(const char *filename)
prefdir = g_strdup(userenv);
}
-#ifdef WIN32
+#ifdef _WIN32
// prefer c:\Documents and Settings\UserName\Application Data\ to c:\Documents and Settings\userName\;
// TODO: CSIDL_APPDATA is C:\Users\UserName\AppData\Roaming these days
// should we migrate to AppData\Local? Then we can simply use the portable g_get_user_config_dir()
diff --git a/src/io/sys.cpp b/src/io/sys.cpp
index c56119fb0..af6e964b7 100644
--- a/src/io/sys.cpp
+++ b/src/io/sys.cpp
@@ -16,7 +16,7 @@
#endif
#include <fstream>
-#ifdef WIN32
+#ifdef _WIN32
#include <fcntl.h>
#include <io.h>
#endif
@@ -78,7 +78,7 @@ FILE *Inkscape::IO::fopen_utf8name( char const *utf8name, char const *mode )
Glib::ustring how( mode );
if ( how.find("w") != Glib::ustring::npos ) {
-#ifdef WIN32
+#ifdef _WIN32
setmode(fileno(stdout), O_BINARY);
#endif
return stdout;
diff --git a/src/io/uristream.cpp b/src/io/uristream.cpp
index 0b38dbc84..ff4cca74d 100644
--- a/src/io/uristream.cpp
+++ b/src/io/uristream.cpp
@@ -49,7 +49,7 @@ static FILE *fopen_utf8name( char const *utf8name, int mode )
return nullptr;
}
-#ifndef WIN32
+#ifndef _WIN32
gchar *filename = g_filename_from_utf8( utf8name, -1, nullptr, nullptr, nullptr );
if ( filename ) {
if (mode == FILE_READ)