summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-29 04:37:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-29 04:37:14 +0000
commit8361dab9cb332e109dd22d99735d62997d1fbfc3 (patch)
treec49b1ac0701dbc1598d5e8be725400d862358dec
parent91ec3d8fbeeddea7b3ddb50a6f59cc4870d15c7c (diff)
VC6 error
* win32/win32.c (GetSystemWindowsDirectoryW): use GetWindowsDirectoryW for VC6. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55535 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--win32/win32.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 4192a19add..f3ddb9cc66 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -505,6 +505,11 @@ rb_w32_special_folder(int type)
return rb_w32_conv_from_wchar(path, rb_filesystem_encoding());
}
+#if defined _MSC_VER && _MSC_VER <= 1200
+/* License: Ruby's */
+#define GetSystemWindowsDirectoryW GetWindowsDirectoryW
+#endif
+
/* License: Ruby's */
UINT
rb_w32_system_tmpdir(WCHAR *path, UINT len)