DragonNest/Server/ServiceMonitorEx/External/UltimateToolbox/lib/Build DLLs/StdAfx.cpp
Cussrro 47f7895977 Revert "修复编码问题"
This reverts commit 9e69c01767.
2024-12-21 10:04:04 +08:00

14 lines
415 B
C++

// stdafx.cpp : source file that includes just the standard includes
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// v9.3 - update 04 fixes for unicode builds in automatically links correct comsuppw library in VC2005 and later - AAW 2009-03-29
#if (_MSC_VER >= 1400)
#ifdef _DEBUG
#pragma comment(lib, "comsuppwd.lib")
#else
#pragma comment(lib, "comsuppw.lib")
#endif
#endif