浏览代码

交子唤神

Jeff Wang 2 年之前
父节点
当前提交
fbce84fd4d

文件差异内容过多而无法显示
+ 0 - 2
GameAssist/GameAssist/Assist.rc


+ 95 - 0
GameAssist/GameAssist/CAction.cpp

@@ -46,6 +46,7 @@ SRAND(80,120);
 		m_hBattleJY = NULL;
 		m_hBattleJYEvent = NULL;
 		m_hBattleZYTZ = NULL;
+		m_nSkillShortcutKey = VK_F1;
 		InitNPCInfo();
 	}
 
@@ -1123,6 +1124,44 @@ SRAND(80,120);
 		}
 	}
 
+	void CAction::ExerciseSkill(INT nVK_Skill, BOOL bCheckAttack)
+	{
+		BOOL bFirst = TRUE;
+		while (IsFighting())
+		{
+			if (IsWattingAttack(-1))
+			{
+				if (bFirst)
+				{
+					SRAND(250, 350);
+					SendKey(nVK_Skill);
+					if (bCheckAttack)
+					{
+						Sleep(30);
+						MouseClick({ 226, 158 });
+					}
+					bFirst = FALSE;
+				}
+				else
+				{
+					if (bCheckAttack)
+						SendKey(VK_A, FALSE, TRUE);
+					else
+						SendKey(nVK_Skill);
+				}
+			}
+			Sleep(650);
+		}
+		
+		if (IsSPBelowSafeValue(TRUE, TRUE, 20))
+		{
+			//DebugLog(_T("低SP安全值"));
+			// 右键;
+			MouseMove({ (GameAssist::g_rcRoleIdleSP.right + GameAssist::g_rcRoleIdleSP.left) / 2 - 3, (GameAssist::g_rcRoleIdleSP.bottom + GameAssist::g_rcRoleIdleSP.top) / 2 - 20 });
+			MouseRClick({ (GameAssist::g_rcRoleIdleSP.right + GameAssist::g_rcRoleIdleSP.left) / 2 - 3, (GameAssist::g_rcRoleIdleSP.bottom + GameAssist::g_rcRoleIdleSP.top) / 2 - 20 });
+		}
+	}
+
 	void CAction::StartBattleJY()
 	{
 		m_hBattleJYEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
@@ -1178,4 +1217,60 @@ SRAND(80,120);
 
 		return 0;
 	}
+
+	void CAction::StartSkill()
+	{
+		m_hBattleJYEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
+		if (m_hBattleJYEvent == NULL) {
+			_tprintf_s(_T("创建事件失败\n"));
+			return;
+			
+		}
+		
+		m_hBattleJY = CreateThread(NULL, 0, SkillThread, this, 0, NULL);
+		if (m_hBattleJY == NULL) {
+			_tprintf_s(_T("创建线程失败\n"));
+			
+			if (m_hBattleJYEvent) {
+				SetEvent(m_hBattleJYEvent);
+				CloseHandle(m_hBattleJYEvent);
+				m_hBattleJYEvent = NULL;
+				
+			}			
+		}
+	}
+	
+	void CAction::StopSkill()
+	{
+		// 设置事件有信号;
+		if (m_hBattleJYEvent)
+			SetEvent(m_hBattleJYEvent);
+		
+		// 等待线程结束;
+		if (m_hBattleJY) {
+			WaitForSingleObject(m_hBattleJY, INFINITE);
+			CloseHandle(m_hBattleJY);
+			m_hBattleJY = NULL;			
+		}
+		
+		// 关闭事件句柄;
+		if (m_hBattleJYEvent) {
+			CloseHandle(m_hBattleJYEvent);
+			m_hBattleJYEvent = NULL;			
+		}
+	}
+	
+	DWORD __stdcall CAction::SkillThread(LPVOID lpParam)
+	{
+		int i = 0;
+		CAction * pThis = (CAction*)lpParam;
+		do
+		{
+			GameGlobal::DebugLog(_T("start.打镜妖 %d----------------------------"), i);
+			pThis->ExerciseSkill(pThis->m_nSkillShortcutKey, pThis->m_bTargetOfRoleSkill);
+			GameGlobal::DebugLog(_T("end.打镜妖 %d----------------------------\n"), i++);
+		} while (WaitForSingleObject(pThis->m_hBattleJYEvent, 200) == WAIT_TIMEOUT);
+
+		return 0;
+	}
 };

+ 6 - 1
GameAssist/GameAssist/CAction.h

@@ -114,7 +114,7 @@ public:
 		void OpenChest(int nTimes=10);
 		// 周六领礼物;
 		void GetSaturdayPresents();
-
+		void ExerciseSkill(INT nVK_Skill, BOOL bCheckAttack = FALSE);
 	private:
 		HANDLE m_hBattleJY;
 		HANDLE m_hBattleJYEvent;
@@ -123,10 +123,15 @@ public:
 		bool m_bHasSummoner;		// 是否有召唤曽;
 		int m_nSummonerSkillType;	// 重击技能类型;
 		bool m_bTargetOfRoleSkill;	// 人物技能作用对象:true = 敌人、 false = 自己;
+		int m_nSkillShortcutKey;	// 技能快捷键;
 
 		void StartBattleJY();
 		void StopBattleJY();
 		static DWORD WINAPI BattleJYThread(LPVOID lpParam);
+
+		void StartSkill();
+		void StopSkill();
+		static DWORD WINAPI SkillThread(LPVOID lpParam);
 	};
 
 };

+ 27 - 0
GameAssist/GameAssist/GameAssistDlg.cpp

@@ -146,6 +146,8 @@ BOOL CGameAssistDlg::OnInitDialog()
 	OnBnClickedButton11();
 	InitSkillList();
 
+	SetDlgItemInt(IDC_EDIT7, 100);
+
 	return TRUE;  // 除非将焦点设置到控件,否则返回 TRUE
 }
 
@@ -681,5 +683,30 @@ void CGameAssistDlg::OnBnClickedButton13() // 
 
 void CGameAssistDlg::OnBnClickedButton14()
 {
+	GameAssist::GameWndInfo* pGameInfo = GetCurGameInfo();
+	if (pGameInfo && pGameInfo->pAction)
+	{
+		GameAssist::CAction* pAction = (GameAssist::CAction*)pGameInfo->pAction;
+
+		CRect rc = pAction->FindMatchIcon(_T(".\\img\\交子唤神.bmp"));
+		if (rc.IsRectEmpty() || rc.IsRectNull())
+		{
+			MessageBox(_T("未找到交子唤神按钮"));
+			return;
+		}
 
+		INT X = (rc.right + rc.left) / 2;
+		INT Y = (rc.top + rc.bottom) / 2;
+		INT nCount = GetDlgItemInt(IDC_EDIT7);
+		if (pAction)
+		{
+			pAction->MouseMove({ X,Y });
+			for (size_t i = 0; i < nCount; i++)
+			{
+				pAction->MouseClick();
+				SRAND(850, 1050);
+				SetDlgItemInt(IDC_EDIT7, nCount - i);
+			}
+		}
+	}
 }

+ 2 - 1
GameAssist/GameAssist/resource.h

@@ -42,6 +42,7 @@
 #define IDC_SPIN1                       1033
 #define IDC_COMBO3                      1035
 #define CB_HERO                         1035
+#define IDC_EDIT7                       1036
 
 // Next default values for new objects
 // 
@@ -49,7 +50,7 @@
 #ifndef APSTUDIO_READONLY_SYMBOLS
 #define _APS_NEXT_RESOURCE_VALUE        130
 #define _APS_NEXT_COMMAND_VALUE         32771
-#define _APS_NEXT_CONTROL_VALUE         1036
+#define _APS_NEXT_CONTROL_VALUE         1037
 #define _APS_NEXT_SYMED_VALUE           101
 #endif
 #endif

二进制
GameAssist/img/交子唤神.bmp


+ 1 - 0
gm/gm/Debug/gm.log

@@ -0,0 +1 @@
+LINK : fatal error LNK1104: 无法打开文件“BlackBone.lib”

二进制
gm/gm/Debug/gm.tlog/CL.command.1.tlog


二进制
gm/gm/Debug/gm.tlog/CL.read.1.tlog


二进制
gm/gm/Debug/gm.tlog/CL.write.1.tlog


+ 2 - 0
gm/gm/Debug/gm.tlog/gm.lastbuildstate

@@ -0,0 +1,2 @@
+PlatformToolSet=v143:VCToolArchitecture=Native32Bit:VCToolsVersion=14.30.30705:TargetPlatformVersion=10.0.19041.0:
+Debug|Win32|E:\CFG\repos_assist\gm\|

+ 1 - 0
gm/gm/Debug/gm.tlog/link.command.1.tlog

@@ -0,0 +1 @@
+��

+ 1 - 0
gm/gm/Debug/gm.tlog/link.read.1.tlog

@@ -0,0 +1 @@
+��

+ 1 - 0
gm/gm/Debug/gm.tlog/link.write.1.tlog

@@ -0,0 +1 @@
+��

+ 0 - 0
gm/gm/Debug/gm.tlog/unsuccessfulbuild


+ 464 - 0
gm/gm/Release/gm.log

@@ -0,0 +1,464 @@
+  kiero.cpp
+  IDisplay.cpp
+E:\CFG\repos_assist\gm\gm\background\display\IDisplay.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\display\IDisplay.h(5,10): fatal error C1083: 无法打开包括文件: “./include/promutex.h”: No such file or directory
+  opDxGL.cpp
+E:\CFG\repos_assist\gm\gm\background\display\opDxGL.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\display\IDisplay.h(5,10): fatal error C1083: 无法打开包括文件: “./include/promutex.h”: No such file or directory
+  opGDI.cpp
+E:\CFG\repos_assist\gm\gm\background\display\opGDI.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\display\opGDI.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\display\opGDI.h(6,10): fatal error C1083: 无法打开包括文件: “optype.h”: No such file or directory
+  DisplayHook.cpp
+E:\CFG\repos_assist\gm\gm\background\Hook\DisplayHook.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\Hook\DisplayHook.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\Hook\DisplayHook.cpp(467,40): error C2429: 语言功能 "简要静态断言" 需要编译器标志 "/std:c++17"
+  HookExport.cpp
+E:\CFG\repos_assist\gm\gm\background\Hook\HookExport.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\Hook\DisplayHook.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+  InputHook.cpp
+E:\CFG\repos_assist\gm\gm\background\Hook\InputHook.cpp(7,10): fatal error C1083: 无法打开包括文件: “MinHook.h”: No such file or directory
+  Bkkeypad.cpp
+E:\CFG\repos_assist\gm\gm\background\keypad\Bkkeypad.h(2,10): fatal error C1083: 无法打开包括文件: “core/optype.h”: No such file or directory
+  winkeypad.cpp
+E:\CFG\repos_assist\gm\gm\background\keypad\Bkkeypad.h(2,10): fatal error C1083: 无法打开包括文件: “core/optype.h”: No such file or directory
+  opMouseDx.cpp
+E:\CFG\repos_assist\gm\gm\background\mouse\opMouseDx.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\mouse\opMouseDx.h(2,10): fatal error C1083: 无法打开包括文件: “../core/optype.h”: No such file or directory
+  opMouseWin.cpp
+E:\CFG\repos_assist\gm\gm\background\mouse\opMouseWin.h(2,10): fatal error C1083: 无法打开包括文件: “core/optype.h”: No such file or directory
+  opBackground.cpp
+E:\CFG\repos_assist\gm\gm\background\opBackground.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\background\opBackground.cpp(3,10): fatal error C1083: 无法打开包括文件: “./core/globalVar.h”: No such file or directory
+  globalVar.cpp
+  helpfunc.cpp
+E:\CFG\repos_assist\gm\gm\core\helpfunc.cpp(72,2): error C4996: 'vswprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\core\helpfunc.cpp(88,2): error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\core\helpfunc.cpp(93,2): error C4996: 'vsprintf': This function or variable may be unsafe. Consider using vsprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+  opEnv.cpp
+  Pipe.cpp
+  ImageLoc.cpp
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\include\Dict.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\include\Dict.h(115,19): warning C4244: “=”: 从“short”转换到“uint8_t”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(207,23): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(210,4): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(245,23): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(248,4): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(285,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(292,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\include\Dict.h(325,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(352,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(368,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\color.h(35,13): error C4996: 'swscanf': This function or variable may be unsafe. Consider using swscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\color.h(43,13): error C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\color.h(49,3): error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(45,11): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(213,17): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(252,17): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(313,30): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(329,20): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(363,30): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(386,22): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(437,30): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(453,20): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(488,30): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(510,22): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(637,20): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(684,20): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(723,8): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(732,12): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(840,13): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1035,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1131,20): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1133,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1251,20): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1275,22): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1377,15): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(1331,14): warning C4101: “y”: 未引用的局部变量
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(803,18): warning C4101: “k”: 未引用的局部变量
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(337): message : 查看对正在编译的函数 模板 实例化“long ImageBase::trans_match<false>(long,long,Image *,color_t,std::vector<std::_Vbase,std::allocator<std::_Vbase>>,int)”的引用
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(803,25): warning C4101: “dy”: 未引用的局部变量
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.cpp(803,21): warning C4101: “dx”: 未引用的局部变量
+  ImageProc.cpp
+E:\CFG\repos_assist\gm\gm\imageProc\ImageProc.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\imageProc\ImageProc.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\imageProc\ImageLoc.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\include\Dict.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\include\Dict.h(115,19): warning C4244: “=”: 从“short”转换到“uint8_t”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(207,23): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(210,4): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(245,23): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(248,4): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(285,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(292,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\include\Dict.h(325,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(352,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(368,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\color.h(35,13): error C4996: 'swscanf': This function or variable may be unsafe. Consider using swscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\color.h(43,13): error C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\color.h(49,3): error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\imageProc\ImageProc.cpp(66,4): error C4996: 'swscanf': This function or variable may be unsafe. Consider using swscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\imageProc\ImageProc.cpp(92,4): error C4996: 'swscanf': This function or variable may be unsafe. Consider using swscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+  gm.cpp
+E:\CFG\repos_assist\gm\gm\gm.h(50,15): warning C4251: “libgm::_curr_path”: class“std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t>>”需要有 dll 接口由 class“libgm”的客户端使用
+C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Tools\MSVC\14.30.30705\include\xstring(4921): message : 参见“std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t>>”的声明
+E:\CFG\repos_assist\gm\gm\gm.h(52,31): warning C4251: “libgm::_vkmap”: class“std::map<std::wstring,long,std::less<std::wstring>,std::allocator<std::pair<const std::wstring,long>>>”需要有 dll 接口由 class“libgm”的客户端使用
+E:\CFG\repos_assist\gm\gm\gm.h(52): message : 参见“std::map<std::wstring,long,std::less<std::wstring>,std::allocator<std::pair<const std::wstring,long>>>”的声明
+E:\CFG\repos_assist\gm\gm\gm.h(53,12): warning C4251: “libgm::_screenData”: class“std::vector<unsigned char,std::allocator<unsigned char>>”需要有 dll 接口由 class“libgm”的客户端使用
+E:\CFG\repos_assist\gm\gm\gm.h(11): message : 参见“std::vector<unsigned char,std::allocator<unsigned char>>”的声明
+E:\CFG\repos_assist\gm\gm\gm.h(54,12): warning C4251: “libgm::_screenDataBmp”: class“std::vector<unsigned char,std::allocator<unsigned char>>”需要有 dll 接口由 class“libgm”的客户端使用
+E:\CFG\repos_assist\gm\gm\gm.h(11): message : 参见“std::vector<unsigned char,std::allocator<unsigned char>>”的声明
+E:\CFG\repos_assist\gm\gm\gm.h(55,15): warning C4251: “libgm::m_opPath”: class“std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t>>”需要有 dll 接口由 class“libgm”的客户端使用
+C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Tools\MSVC\14.30.30705\include\xstring(4921): message : 参见“std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t>>”的声明
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\ImageProc\ImageProc.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\ImageProc\ImageLoc.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\include\Dict.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\include\Dict.h(115,19): warning C4244: “=”: 从“short”转换到“uint8_t”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(207,23): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(210,4): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(245,23): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(248,4): error C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\Dict.h(285,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(292,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\include\Dict.h(325,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(352,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\Dict.h(368,1): warning C4267: “=”: 从“size_t”转换到“short”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\include\color.h(35,13): error C4996: 'swscanf': This function or variable may be unsafe. Consider using swscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\color.h(43,13): error C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\include\color.h(49,3): error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\core\Cmder.h(17,32): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\MemoryEx.h(6,10): fatal error C1083: 无法打开包括文件: “BlackBone/Process/Process.h”: No such file or directory
+  Injecter.cpp
+E:\CFG\repos_assist\gm\gm\winapi\Injecter.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\winapi\Injecter.h(2,10): fatal error C1083: 无法打开包括文件: “core/optype.h”: No such file or directory
+  正在编译...
+  MemoryEx.cpp
+E:\CFG\repos_assist\gm\gm\winapi\MemoryEx.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\winapi\MemoryEx.h(5,10): fatal error C1083: 无法打开包括文件: “./core/helpfunc.h”: No such file or directory
+  query_api.cpp
+E:\CFG\repos_assist\gm\gm\winapi\query_api.cpp(2,10): fatal error C1083: 无法打开包括文件: “core/optype.h”: No such file or directory
+  WinApi.cpp
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.h(1,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(55,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(91,28): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(93,28): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(103,27): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(105,27): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(129,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(131,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(141,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(143,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(165,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(167,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(177,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(179,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(201,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(203,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(213,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(215,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(91,8): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(93,8): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(103,7): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(105,7): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(129,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(131,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(141,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(143,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(165,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(167,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(177,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(179,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(201,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(203,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(213,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(215,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(287,27): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(289,27): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(319,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(321,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(328,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(330,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(363,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(365,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(372,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(374,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(410,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(412,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(419,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(421,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(450,22): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(460,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(462,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(475,28): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(477,28): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(501,22): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(515,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(517,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(537,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(539,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(561,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(575,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(577,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(595,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(597,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(618,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(637,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(639,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(662,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(664,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(688,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(690,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(702,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(704,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(736,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(738,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(757,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(759,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(794,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(796,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(816,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(818,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(857,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(859,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(877,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(882,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(884,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(914,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(924,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(926,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(939,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(941,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(966,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(981,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(983,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1003,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1005,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1032,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1048,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1050,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1071,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1073,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1100,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1120,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1122,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1146,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1148,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1172,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1174,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1186,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1188,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1219,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1221,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1240,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1242,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1276,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1278,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1298,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1300,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1337,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1339,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1362,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1364,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1393,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1403,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1405,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1418,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1420,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1444,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1459,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1461,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1481,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1483,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1509,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1525,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1527,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1548,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1550,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1577,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1597,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1599,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1623,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1625,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1648,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1650,30): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1662,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1664,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1678,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1697,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1699,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1718,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1720,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1755,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1757,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1777,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1779,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1816,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1818,32): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1841,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1843,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1873,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1883,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1885,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1898,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1900,29): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1925,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1940,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1942,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1962,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1964,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1991,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2007,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2009,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2030,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2032,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2059,23): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2079,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2081,33): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2105,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2107,31): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(287,7): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(289,7): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(319,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(321,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(328,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(330,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(363,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(365,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(372,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(374,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(410,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(412,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(419,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(421,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(460,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(462,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(475,8): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(477,8): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(515,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(517,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(537,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(539,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(575,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(577,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(595,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(597,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(637,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(639,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(662,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(664,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(688,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(690,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(702,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(704,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(736,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(738,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(757,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(759,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(794,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(796,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(816,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(818,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(857,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(859,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(882,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(884,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(924,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(926,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(939,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(941,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(981,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(983,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1003,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1005,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1048,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1050,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1071,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1073,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1120,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1122,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1146,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1148,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1172,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1174,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1186,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1188,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1219,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1221,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1240,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1242,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1276,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1278,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1298,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1300,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1337,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1339,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1362,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1364,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1403,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1405,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1418,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1420,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1459,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1461,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1481,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1483,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1525,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1527,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1548,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1550,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1597,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1599,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1623,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1625,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1648,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1650,10): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1662,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1664,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1697,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1699,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1718,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1720,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1755,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1757,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1777,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1779,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1816,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1818,12): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1841,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1843,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1883,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1885,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1898,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1900,9): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1940,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1942,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1962,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(1964,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2007,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2009,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2030,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2032,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2079,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2081,13): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2105,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2107,11): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2174,25): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 2 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2176,25): warning C4477: “swprintf”: 格式字符串“%d”需要类型“int”的参数,但可变参数 1 拥有了类型“HWND”
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2174,5): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2176,5): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2196,36): warning C4805: “==”: 在操作中将类型“BOOL”与类型“bool”混合不安全
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2198,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2201,5): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2203,5): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2552,5): error C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2561,1): warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2565,2): error C4996: 'swprintf': function has been changed to conform with the ISO C standard, adding an extra character count parameter. To use the traditional Microsoft version, set _CRT_NON_CONFORMING_SWPRINTFS.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2816,55): warning C4244: “参数”: 从“LONG”转换到“BYTE”,可能丢失数据
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2887,30): error C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2898,21): warning C4018: “<”: 有符号/无符号不匹配
+E:\CFG\repos_assist\gm\gm\winapi\WinApi.cpp(2911,21): warning C4018: “<”: 有符号/无符号不匹配
+  dllmain.cpp

二进制
gm/gm/Release/gm.tlog/CL.command.1.tlog


+ 2 - 0
gm/gm/Release/gm.tlog/gm.lastbuildstate

@@ -0,0 +1,2 @@
+PlatformToolSet=v143:VCToolArchitecture=Native32Bit:VCToolsVersion=14.30.30705:TargetPlatformVersion=10.0.19041.0:
+Release|Win32|E:\CFG\repos_assist\gm\|

+ 0 - 0
gm/gm/Release/gm.tlog/unsuccessfulbuild


部分文件因为文件数量过多而无法显示