summaryrefslogtreecommitdiff
path: root/common/staticlink/module.h
blob: e116324854a7070903829497099eb029a1c47fbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//========= 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