mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
17 lines
621 B
C
17 lines
621 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: static link module stitching
|
|
//
|
|
//=============================================================================//
|
|
|
|
// cannot be part of precompiled header chain
|
|
#if defined(_WIN32) && defined(_STATIC_LINKED)
|
|
|
|
// subsystems define _MODULE to create a unique symbol that can be referenced to force linkage
|
|
// subsystems don't define _MODULE for "pure" stateless shared modules which prevents the module from having a "state" symbol
|
|
// and causing linkage collision errors
|
|
#if defined(_MODULE)
|
|
DECLARE_MODULE(_MODULE)
|
|
#endif
|
|
|
|
#endif |