halflife-photomode/common/dll_state.h

26 lines
687 B
C
Raw Normal View History

//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
2013-08-30 13:34:05 -07:00
//
// Purpose:
2013-08-30 13:34:05 -07:00
//
// $NoKeywords: $
//=============================================================================
#pragma once
2013-08-30 13:34:05 -07: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
2013-08-30 13:34:05 -07:00
// DLL Pause reasons
#define DLL_NORMAL 0 // User hit Esc or something.
#define DLL_QUIT 4 // Quit now
#define DLL_RESTART 6 // Switch to launcher for linux, does a quit but returns 1
2013-08-30 13:34:05 -07:00
// DLL Substate info ( not relevant )
#define ENG_NORMAL (1 << 0)