PROFIからSUPER PROFIへの質問-1. - ページ 10

 
dllに含まれるwindupのバージョンを下げる?
 
TheXpert:
dllに含まれるwindupのバージョンを下げる?
今晩、家で試してみます。でも、XPを仮想マシンに入れて確認する必要がありますね。後日、報告します。
 
では、他のDLLへの依存はないのですね。
 
TheXpert:
では、他のDLLへの依存はないのですか?

ノー

 
VS2010で以前のバージョンのWindowsを使用できるように設定することができません。このプロジェクト 設定が見当たらないのですが。:(
 
//
// Windows 2000 minimum
//
#ifndef WINVER
#define WINVER 0x0500
#endif

#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0500
#endif                                          
 

この方法でやっても、まだ同じエラーです。

#pragma once
/*
// Modify the following defines if you have to target a platform prior to the ones specified below.
// Refer to MSDN for the latest info on corresponding values for different platforms.
#ifndef WINVER                  // Specifies that the minimum required platform is Windows Vista.
#define WINVER 0x0600           // Change this to the appropriate value to target other versions of Windows.
#endif

#ifndef _WIN32_WINNT            // Specifies that the minimum required platform is Windows Vista.
#define _WIN32_WINNT 0x0600     // Change this to the appropriate value to target other versions of Windows.
#endif

#ifndef _WIN32_WINDOWS          // Specifies that the minimum required platform is Windows 98.
#define _WIN32_WINDOWS 0x0410   // Change this to the appropriate value to target Windows Me or later.
#endif

#ifndef _WIN32_IE               // Specifies that the minimum required platform is Internet Explorer 7.0.
#define _WIN32_IE 0x0700        // Change this to the appropriate value to target other versions of IE.
#endif
//+------------------------------------------------------------------+
*/
#ifndef WINVER
#define WINVER 0x0500
#endif

#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0500
#endif  
 
やばい、もうダメだ、2010年、スタジオがない。
 
おかしいな...。XPで開発しているのなら、なぜWin7を使うのか?
 
jartmailru:
おかしいな...。XPで開発しているのなら、なぜWin7を使うのか?
win7とXPの両方でbiblaを使おうと思っています。