Przeglądaj źródła

添加生成git版本信息的工程源码

Jeff Wang 3 lat temu
rodzic
commit
2f6295d88e

+ 20 - 0
gitver/gitver.sln

@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gitver", "gitver\gitver.vcproj", "{52757676-7D7D-442C-A1C8-CF4F6689E860}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Win32 = Debug|Win32
+		Release|Win32 = Release|Win32
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{52757676-7D7D-442C-A1C8-CF4F6689E860}.Debug|Win32.ActiveCfg = Debug|Win32
+		{52757676-7D7D-442C-A1C8-CF4F6689E860}.Debug|Win32.Build.0 = Debug|Win32
+		{52757676-7D7D-442C-A1C8-CF4F6689E860}.Release|Win32.ActiveCfg = Release|Win32
+		{52757676-7D7D-442C-A1C8-CF4F6689E860}.Release|Win32.Build.0 = Release|Win32
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+EndGlobal

+ 40 - 0
gitver/gitver/ReadMe.txt

@@ -0,0 +1,40 @@
+========================================================================
+    控制台应用程序:gitver 项目概述
+========================================================================
+
+应用程序向导已为您创建了此 gitver 应用程序。
+
+本文件概要介绍组成 gitver 应用程序的
+的每个文件的内容。
+
+
+gitver.vcproj
+    这是使用应用程序向导生成的 VC++ 项目的主项目文件,
+    其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。
+
+gitver.cpp
+    这是主应用程序源文件。
+
+/////////////////////////////////////////////////////////////////////////////
+应用程序向导创建了下列资源:
+
+gitver.rc
+这是程序使用的所有 Microsoft Windows 资源的列表。它包括 RES 子目录中存储的图标、位图和光标。
+此文件可以直接在 Microsoft Visual C++ 中进行编辑。
+
+Resource.h
+    这是标准头文件,可用于定义新的资源 ID。
+    Microsoft Visual C++ 将读取并更新此文件。
+
+/////////////////////////////////////////////////////////////////////////////
+其他标准文件:
+
+StdAfx.h, StdAfx.cpp
+    这些文件用于生成名为 gitver.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。
+
+/////////////////////////////////////////////////////////////////////////////
+其他注释:
+
+应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。
+
+/////////////////////////////////////////////////////////////////////////////

+ 17 - 0
gitver/gitver/Resource.h

@@ -0,0 +1,17 @@
+//{{NO_DEPENDENCIES}}
+// Microsoft Visual C++ generated include file.
+// Used by gitver.rc
+//
+
+#define IDS_APP_TITLE			103
+
+// жÔÏóµÄÏÂÒ»×éĬÈÏÖµ
+//
+#ifdef APSTUDIO_INVOKED
+#ifndef APSTUDIO_READONLY_SYMBOLS
+#define _APS_NEXT_RESOURCE_VALUE	101
+#define _APS_NEXT_COMMAND_VALUE		40001
+#define _APS_NEXT_CONTROL_VALUE		1000
+#define _APS_NEXT_SYMED_VALUE		101
+#endif
+#endif

+ 245 - 0
gitver/gitver/gitver.cpp

@@ -0,0 +1,245 @@
+// gitver.cpp : 定义控制台应用程序的入口点。
+//
+
+#include "stdafx.h"
+#include "gitver.h"
+
+#ifdef _DEBUG
+#define new DEBUG_NEW
+#endif
+
+
+// 唯一的应用程序对象
+
+CWinApp theApp;
+
+using namespace std;
+
+extern TCHAR g_szCurModuleFileName[MAX_PATH] = { 0 };			// 软件名称;
+extern TCHAR g_szCurModuleDir[MAX_PATH] = { 0 };
+extern TCHAR g_szFna[_MAX_FNAME] = { 0 };
+extern TCHAR g_szExt[_MAX_EXT] = { 0 };
+extern TCHAR g_szFolderName[MAX_PATH] = { 0 };
+
+void GetDirInfo()
+{
+    TCHAR szDrive[_MAX_DRIVE] = { 0 };
+    TCHAR szDir[_MAX_DIR] = { 0 };
+    TCHAR szFna[_MAX_FNAME] = { 0 };
+    TCHAR szExt[_MAX_EXT] = { 0 };
+    DWORD dwRet = ::GetModuleFileName(NULL, g_szCurModuleFileName, sizeof(g_szCurModuleFileName) / sizeof(TCHAR));
+
+    _tsplitpath_s(g_szCurModuleFileName, szDrive, szDir, g_szFna, g_szExt);
+    strcat_s(g_szCurModuleDir, MAX_PATH, szDrive);
+    strcat_s(g_szCurModuleDir, MAX_PATH, szDir);
+
+	CString strVal = g_szCurModuleDir;
+	if ( strVal.GetAt(strVal.GetLength()-1) == _T('\\'))
+		strVal.Delete(strVal.GetLength()-1);
+
+	int nPos = strVal.ReverseFind(_T('\\'));
+	if ( nPos != -1 )
+	{
+		strVal = strVal.Right(strVal.GetLength() - nPos -1);
+		_stprintf_s(g_szFolderName, _T("%s"), strVal.GetString());
+	}
+}
+
+BOOL ReplaceFileContent(LPCTSTR lpFile, std::vector<std::string> &vtOldContent, std::vector<std::string> &vtNewContent)
+{
+	if ( vtOldContent.size() != vtNewContent.size() )
+		return FALSE;
+
+	if ( !PathFileExists(lpFile) )
+		return FALSE;
+
+	
+	CFile myFile;
+	CFileException fileExp;
+	if ( !myFile.Open(lpFile, CFile::modeReadWrite, &fileExp) )
+		return FALSE;
+
+	DWORD dwFileLength = myFile.GetLength();
+	BYTE *pData = new BYTE[dwFileLength];
+	memset(pData, 0, dwFileLength);
+	myFile.Read(pData, dwFileLength);
+
+	std::string strContent;
+	strContent.append((char*)pData, dwFileLength);
+	delete []pData;
+	pData = NULL;
+	myFile.Close();
+
+	std::vector<std::string>::iterator it_old;
+	std::vector<std::string>::iterator it_new;
+	for (it_old = vtOldContent.begin(), it_new = vtNewContent.begin(); it_old != vtOldContent.end(), it_new != vtNewContent.end(); it_old++, it_new++)
+	{
+		int nPos = strContent.find(it_old->c_str());
+		if ( nPos != std::string::npos )
+		{
+			strContent.replace(nPos, it_old->size(), it_new->c_str());
+		}
+	}
+
+	if ( !myFile.Open(lpFile, CFile::modeCreate|CFile::modeWrite, &fileExp) )
+		return FALSE;
+
+	myFile.Write(strContent.c_str(), strContent.size());
+	myFile.Close();
+
+
+	return TRUE;
+}
+
+CString StartProcess(LPCTSTR program, LPTSTR args, LPCTSTR lpCurrentDirectory )
+{
+    CString strValue = _T("");
+    const int MY_PIPE_BUFFER_SIZE = 8912;
+    //初始化管道
+    HANDLE hPipeRead;
+    HANDLE hPipeWrite;
+    SECURITY_ATTRIBUTES saOutPipe;
+    ::ZeroMemory(&saOutPipe, sizeof(saOutPipe));
+    saOutPipe.nLength = sizeof(SECURITY_ATTRIBUTES);
+    saOutPipe.lpSecurityDescriptor = NULL;
+    saOutPipe.bInheritHandle = TRUE;
+    if (CreatePipe(&hPipeRead, &hPipeWrite, &saOutPipe, MY_PIPE_BUFFER_SIZE))
+    {
+        PROCESS_INFORMATION processInfo;
+        ::ZeroMemory(&processInfo, sizeof(processInfo));
+        STARTUPINFO startupInfo;
+        ::ZeroMemory(&startupInfo, sizeof(startupInfo));
+        startupInfo.cb = sizeof(STARTUPINFO);
+        startupInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
+        startupInfo.hStdOutput = hPipeWrite;
+        startupInfo.hStdError = hPipeWrite;
+        startupInfo.wShowWindow = SW_HIDE;
+
+        BOOL bRet = ::CreateProcess(program, 
+            args,
+            NULL,  // process security
+            NULL,  // thread security
+            TRUE,  //inheritance
+            0,     //no startup flags
+            NULL,  // no special environment
+            lpCurrentDirectory ,  //default startup directory
+            &startupInfo,
+            &processInfo);
+
+        WaitForSingleObject(processInfo.hProcess, INFINITE);
+        if (bRet == 0)
+        {
+            int nRet = GetLastError();
+            printf("CreateProcess last error %d \n", nRet);
+        }
+        else
+        {
+            DWORD dwReadLen = 0;
+            DWORD dwStdLen = 0;
+            if (PeekNamedPipe(hPipeRead, NULL, 0, NULL, &dwReadLen, NULL) && dwReadLen > 0)
+            {
+                char szPipeOut[MY_PIPE_BUFFER_SIZE];
+                ::ZeroMemory(szPipeOut, sizeof(szPipeOut));
+                if (ReadFile(hPipeRead, szPipeOut, dwReadLen, &dwStdLen, NULL))
+                {
+                    strValue = szPipeOut;
+                }
+            }
+        }
+        if (processInfo.hProcess)
+        {
+            CloseHandle(processInfo.hProcess);
+        }
+        if (processInfo.hThread)
+        {
+            CloseHandle(processInfo.hThread);
+        }
+    }
+    CloseHandle(hPipeRead);
+    CloseHandle(hPipeWrite);
+
+    return strValue;
+}
+
+int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
+{
+	int nRetCode = 0;
+    //Sleep(20000);
+
+    GetDirInfo();
+	// 初始化 MFC 并在失败时显示错误
+	if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
+	{
+		// TODO: 更改错误代码以符合您的需要
+		_tprintf(_T("错误: MFC 初始化失败\n"));
+		nRetCode = 1;
+	}
+	else
+	{
+		// TODO: 在此处为应用程序的行为编写代码。
+		// 1=VC++ 2=C#;
+        int nCodeType = 1;
+        if ( argc == 2 )
+            nCodeType = _tstoi(argv[1]);
+        
+#ifdef _DEBUG
+        CString strValue = StartProcess(NULL, "cmd /c git rev-parse --short HEAD", _T("E:\\CFG\\Moka_CShare_FactoryTool\\FactoryTool_CShare"));
+#else
+		CString strValue = StartProcess(NULL, "cmd /c git rev-parse --short HEAD", NULL);
+#endif
+		strValue.Replace(_T("\n"),_T(""));
+
+		TCHAR szValue[MAX_PATH] = { 0 };
+		TCHAR szResFile[MAX_PATH] = { 0 };
+		std::vector<std::string> vtOldContent;
+		std::vector<std::string> vtNewContent;
+
+		if ( nCodeType == 1 )
+		{
+			// FILEVERSION 1,0,0,1
+			// PRODUCTVERSION 1,0,0,1
+			// VALUE "FileVersion", "1.0.0.1"
+			// VALUE "ProductVersion", "1.0.0.1"
+			// VALUE "OriginalFilename", "FactoryAssistTool.exe"
+			// 问题:当commitid长度超过4位数字时,FileVersion放不下这么多字符;
+			_stprintf_s(szResFile, _T("%s\\%s.rc"), g_szCurModuleDir, g_szFolderName);
+
+#if 0
+			vtOldContent.push_back(_T("FILEVERSION 1,0,0,1"));
+			vtOldContent.push_back(_T("VALUE \"FileVersion\", \"1.0.0.1\""));
+			
+			_stprintf_s(szValue, _T("FILEVERSION 1.0.%s"), strValue.GetString());
+			vtNewContent.push_back(szValue);
+
+			_stprintf_s(szValue, _T("VALUE \"FileVersion\", \"1.0.%s\""), strValue.GetString());
+			vtNewContent.push_back(szValue);
+#endif
+
+#if 0
+			strValue = StartProcess(NULL, "cmd /c git rev-parse HEAD", NULL);
+			strValue.Replace(_T("\n"),_T(""));
+
+			_stprintf_s(szValue, "VALUE \"OriginalFilename\", \"%s.exe\"", g_szFolderName);
+			vtOldContent.push_back(szValue);
+
+			_stprintf_s(szValue, "VALUE \"OriginalFilename\", \"%s\"", strValue.GetString());
+			vtNewContent.push_back(szValue);
+#endif
+
+		}
+		else if ( nCodeType == 2 )
+		{
+			_stprintf_s(szResFile, _T("%s\\Properties\\AssemblyInfo.cs"), g_szCurModuleDir);
+			// [assembly: AssemblyFileVersion("1.0.0.1")]
+			vtOldContent.push_back(_T("[assembly: AssemblyFileVersion(\"1.0.0.1\")]"));
+
+			_stprintf_s(szValue, _T("[assembly: AssemblyFileVersion(\"1.0.0.%s\")]"), strValue.GetString());
+			vtNewContent.push_back(szValue);
+		}
+
+		// 更换内容;
+		ReplaceFileContent(szResFile, vtOldContent, vtNewContent);
+	}
+
+	return nRetCode;
+}

+ 3 - 0
gitver/gitver/gitver.h

@@ -0,0 +1,3 @@
+#pragma once
+
+#include "resource.h"

+ 69 - 0
gitver/gitver/gitver.rc

@@ -0,0 +1,69 @@
+//Microsoft Visual C++ 生成的资源脚本。
+//
+#include "resource.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// 从 TEXTINCLUDE 2 资源生成。
+//
+#include "afxres.h"
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_CHS)
+LANGUAGE 4, 2
+#pragma code_page(936)
+
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE
+BEGIN
+    "resource.h\0"
+END
+
+2 TEXTINCLUDE
+BEGIN
+    "#include ""afxres.h""\r\n"
+    "\0"
+END
+
+3 TEXTINCLUDE
+BEGIN
+    "\r\n"
+    "\0"
+END
+
+#endif    // APSTUDIO_INVOKED
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// 字符串表
+//
+
+STRINGTABLE
+BEGIN
+   IDS_APP_TITLE       "gitver"
+END
+
+#endif
+/////////////////////////////////////////////////////////////////////////////
+
+
+
+#ifndef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// 从 TEXTINCLUDE 3 资源生成。
+//
+#ifndef _AFXDLL
+#include "l.CHS\\afxres.rc"
+#endif
+
+/////////////////////////////////////////////////////////////////////////////
+#endif    // 不是 APSTUDIO_INVOKED

+ 241 - 0
gitver/gitver/gitver.vcproj

@@ -0,0 +1,241 @@
+<?xml version="1.0" encoding="gb2312"?>
+<VisualStudioProject
+	ProjectType="Visual C++"
+	Version="9.00"
+	Name="gitver"
+	ProjectGUID="{52757676-7D7D-442C-A1C8-CF4F6689E860}"
+	RootNamespace="gitver"
+	Keyword="Win32Proj"
+	TargetFrameworkVersion="196613"
+	>
+	<Platforms>
+		<Platform
+			Name="Win32"
+		/>
+	</Platforms>
+	<ToolFiles>
+	</ToolFiles>
+	<Configurations>
+		<Configuration
+			Name="Debug|Win32"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+			IntermediateDirectory="$(ConfigurationName)"
+			ConfigurationType="1"
+			UseOfMFC="2"
+			CharacterSet="2"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				Optimization="0"
+				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+				MinimalRebuild="true"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
+				UsePrecompiledHeader="2"
+				WarningLevel="3"
+				DebugInformationFormat="4"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				LinkIncremental="2"
+				UACExecutionLevel="0"
+				UACUIAccess="false"
+				GenerateDebugInformation="true"
+				SubSystem="1"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|Win32"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+			IntermediateDirectory="$(ConfigurationName)"
+			ConfigurationType="1"
+			UseOfMFC="2"
+			CharacterSet="2"
+			WholeProgramOptimization="1"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				Optimization="2"
+				EnableIntrinsicFunctions="true"
+				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+				RuntimeLibrary="2"
+				EnableFunctionLevelLinking="true"
+				UsePrecompiledHeader="2"
+				WarningLevel="3"
+				DebugInformationFormat="3"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				LinkIncremental="1"
+				GenerateDebugInformation="true"
+				SubSystem="1"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+	</Configurations>
+	<References>
+	</References>
+	<Files>
+		<Filter
+			Name="Ô´Îļþ"
+			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+			>
+			<File
+				RelativePath=".\gitver.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\stdafx.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+					/>
+				</FileConfiguration>
+			</File>
+		</Filter>
+		<Filter
+			Name="Í·Îļþ"
+			Filter="h;hpp;hxx;hm;inl;inc;xsd"
+			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+			>
+			<File
+				RelativePath=".\gitver.h"
+				>
+			</File>
+			<File
+				RelativePath=".\Resource.h"
+				>
+			</File>
+			<File
+				RelativePath=".\stdafx.h"
+				>
+			</File>
+			<File
+				RelativePath=".\targetver.h"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="×ÊÔ´Îļþ"
+			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+			>
+			<File
+				RelativePath=".\gitver.rc"
+				>
+			</File>
+		</Filter>
+		<File
+			RelativePath=".\ReadMe.txt"
+			>
+		</File>
+	</Files>
+	<Globals>
+	</Globals>
+</VisualStudioProject>

+ 8 - 0
gitver/gitver/stdafx.cpp

@@ -0,0 +1,8 @@
+// stdafx.cpp : 只包括标准包含文件的源文件
+// gitver.pch 将作为预编译头
+// stdafx.obj 将包含预编译类型信息
+
+#include "stdafx.h"
+
+// TODO: 在 STDAFX.H 中
+// 引用任何所需的附加头文件,而不是在此文件中引用

+ 33 - 0
gitver/gitver/stdafx.h

@@ -0,0 +1,33 @@
+// stdafx.h : 标准系统包含文件的包含文件,
+// 或是经常使用但不常更改的
+// 特定于项目的包含文件
+//
+
+#pragma once
+
+#include "targetver.h"
+
+#include <stdio.h>
+#include <tchar.h>
+#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS      // 某些 CString 构造函数将是显式的
+
+#ifndef VC_EXTRALEAN
+#define VC_EXTRALEAN            // 从 Windows 头中排除极少使用的资料
+#endif
+
+#include <afx.h>
+#include <afxwin.h>         // MFC 核心组件和标准组件
+#include <afxext.h>         // MFC 扩展
+#ifndef _AFX_NO_OLE_SUPPORT
+#include <afxdtctl.h>           // MFC 对 Internet Explorer 4 公共控件的支持
+#endif
+#ifndef _AFX_NO_AFXCMN_SUPPORT
+#include <afxcmn.h>                     // MFC 对 Windows 公共控件的支持
+#endif // _AFX_NO_AFXCMN_SUPPORT
+
+#include <iostream>
+#include <vector>
+#include <string>
+#include <Shlwapi.h>
+
+// TODO: 在此处引用程序需要的其他头文件

+ 24 - 0
gitver/gitver/targetver.h

@@ -0,0 +1,24 @@
+#pragma once
+
+// 以下宏定义要求的最低平台。要求的最低平台
+// 是具有运行应用程序所需功能的 Windows、Internet Explorer 等产品的
+// 最早版本。通过在指定版本及更低版本的平台上启用所有可用的功能,宏可以
+// 正常工作。
+
+// 如果必须要针对低于以下指定版本的平台,请修改下列定义。
+// 有关不同平台对应值的最新信息,请参考 MSDN。
+#ifndef WINVER                          // 指定要求的最低平台是 Windows Vista。
+#define WINVER 0x0600           // 将此值更改为相应的值,以适用于 Windows 的其他版本。
+#endif
+
+#ifndef _WIN32_WINNT            // 指定要求的最低平台是 Windows Vista。
+#define _WIN32_WINNT 0x0600     // 将此值更改为相应的值,以适用于 Windows 的其他版本。
+#endif
+
+#ifndef _WIN32_WINDOWS          // 指定要求的最低平台是 Windows 98。
+#define _WIN32_WINDOWS 0x0410 // 将此值更改为适当的值,以适用于 Windows Me 或更高版本。
+#endif
+
+#ifndef _WIN32_IE                       // 指定要求的最低平台是 Internet Explorer 7.0。
+#define _WIN32_IE 0x0700        // 将此值更改为相应的值,以适用于 IE 的其他版本。
+#endif