You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
389 B
20 lines
389 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
#ifndef HOST_JMP_H
|
|
#define HOST_JMP_H
|
|
#pragma once
|
|
|
|
#ifndef _INC_SETJMP
|
|
#include <setjmp.h>
|
|
#endif
|
|
|
|
extern jmp_buf host_abortserver;
|
|
extern jmp_buf host_enddemo;
|
|
|
|
#endif
|
|
|