[ttssh2-commit] [9418] Visual Studio 2008 でビルドできなかった

Back to archive index
scmno****@osdn***** scmno****@osdn*****
2021年 9月 14日 (火) 00:19:49 JST


Revision: 9418
          https://osdn.net/projects/ttssh2/scm/svn/commits/9418
Author:   zmatsuo
Date:     2021-09-14 00:19:49 +0900 (Tue, 14 Sep 2021)
Log Message:
-----------
Visual Studio 2008 でビルドできなかった

- NTDDI_VISTA が define されていなかった

Modified Paths:
--------------
    trunk/teraterm/common/compat_win.h

-------------- next part --------------
Modified: trunk/teraterm/common/compat_win.h
===================================================================
--- trunk/teraterm/common/compat_win.h	2021-09-13 15:19:41 UTC (rev 9417)
+++ trunk/teraterm/common/compat_win.h	2021-09-13 15:19:49 UTC (rev 9418)
@@ -167,7 +167,7 @@
 										PMINIDUMP_CALLBACK_INFORMATION CallbackParam);
 
 // shell32.dll
-#if !defined(NTDDI_VERSION) || (NTDDI_VERSION < NTDDI_VISTA)
+#if !defined(NTDDI_VERSION) || !defined(NTDDI_VISTA) || (NTDDI_VERSION < NTDDI_VISTA)
 typedef GUID KNOWNFOLDERID;
 #ifdef __cplusplus
 #define REFKNOWNFOLDERID const KNOWNFOLDERID &


ttssh2-commit メーリングリストの案内
Back to archive index