halflife-sdk/common/dll_state.h

24 lines
733 B
C
Raw Permalink Normal View History

2002-12-23 00:00:00 +00:00
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
2001-11-08 00:00:00 +00:00
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
2000-06-05 00:00:00 +00:00
//DLL State Flags
#define DLL_INACTIVE 0 // no dll
#define DLL_ACTIVE 1 // dll is running
#define DLL_PAUSED 2 // dll is paused
#define DLL_CLOSE 3 // closing down dll
#define DLL_TRANS 4 // Level Transition
// DLL Pause reasons
#define DLL_NORMAL 0 // User hit Esc or something.
#define DLL_QUIT 4 // Quit now
2002-12-23 00:00:00 +00:00
#define DLL_RESTART 6 // Switch to launcher for linux, does a quit but returns 1
2000-06-05 00:00:00 +00:00
// DLL Substate info ( not relevant )
#define ENG_NORMAL (1<<0)