Complete disaster-recovery snapshot: engine/game source, game data assets, VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive. Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false, no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
101 lines
3.9 KiB
C++
101 lines
3.9 KiB
C++
// This is a part of the Microsoft Foundation Classes C++ library.
|
|
// Copyright (C) 1992-1998 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// This source code is only intended as a supplement to the
|
|
// Microsoft Foundation Classes Reference and related
|
|
// electronic documentation provided with the library.
|
|
// See these sources for detailed information regarding the
|
|
// Microsoft Foundation Classes product.
|
|
|
|
#include "stdafx.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// global data
|
|
|
|
// The following symbol used to force inclusion of this module
|
|
#ifdef _X86_
|
|
extern "C" { int _afxForceEXCLUDE; }
|
|
#else
|
|
extern "C" { int __afxForceEXCLUDE; }
|
|
#endif
|
|
|
|
// Win32 library excludes
|
|
#ifndef _AFXDLL
|
|
#pragma comment(linker, "/disallowlib:mfc42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfco42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcd42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcn42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfc42.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42.lib")
|
|
#pragma comment(linker, "/disallowlib:mfc42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfco42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcd42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcn42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfc42u.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42u.lib")
|
|
#ifndef _UNICODE
|
|
#pragma comment(linker, "/disallowlib:uafxcwd.lib")
|
|
#pragma comment(linker, "/disallowlib:uafxcw.lib")
|
|
#ifdef _DEBUG
|
|
#pragma comment(linker, "/disallowlib:nafxcw.lib")
|
|
#else
|
|
#pragma comment(linker, "/disallowlib:nafxcwd.lib")
|
|
#endif
|
|
#else
|
|
#pragma comment(linker, "/disallowlib:nafxcwd.lib")
|
|
#pragma comment(linker, "/disallowlib:nafxcw.lib")
|
|
#ifdef _DEBUG
|
|
#pragma comment(linker, "/disallowlib:uafxcw.lib")
|
|
#else
|
|
#pragma comment(linker, "/disallowlib:uafxcwd.lib")
|
|
#endif
|
|
#endif
|
|
#else
|
|
#pragma comment(linker, "/disallowlib:nafxcwd.lib")
|
|
#pragma comment(linker, "/disallowlib:nafxcw.lib")
|
|
#pragma comment(linker, "/disallowlib:uafxcwd.lib")
|
|
#pragma comment(linker, "/disallowlib:uafxcw.lib")
|
|
#ifndef _UNICODE
|
|
#pragma comment(linker, "/disallowlib:mfc42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfco42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcd42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcn42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfc42u.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42u.lib")
|
|
#ifdef _DEBUG
|
|
#pragma comment(linker, "/disallowlib:mfc42.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42.lib")
|
|
#else
|
|
#pragma comment(linker, "/disallowlib:mfc42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfco42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcd42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcn42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42d.lib")
|
|
#endif
|
|
#else
|
|
#pragma comment(linker, "/disallowlib:mfc42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfco42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcd42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcn42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42d.lib")
|
|
#pragma comment(linker, "/disallowlib:mfc42.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42.lib")
|
|
#ifdef _DEBUG
|
|
#pragma comment(linker, "/disallowlib:mfc42u.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42u.lib")
|
|
#else
|
|
#pragma comment(linker, "/disallowlib:mfc42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfco42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcd42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcn42ud.lib")
|
|
#pragma comment(linker, "/disallowlib:mfcs42ud.lib")
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|