Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
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.
|
|
|
|
//========= Copyright <EFBFBD> 1996-2002, Valve LLC, All rights reserved. ============
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
#if !defined( HUD_IFACEH )
|
|
|
|
|
#define HUD_IFACEH
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#define EXPORT _declspec( dllexport )
|
|
|
|
|
#define _DLLEXPORT __declspec( dllexport )
|
|
|
|
|
#else
|
|
|
|
|
#define EXPORT
|
|
|
|
|
#define _DLLEXPORT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
typedef int (*pfnUserMsgHook)(const char *pszName, int iSize, void *pbuf);
|
|
|
|
|
#include "wrect.h"
|
|
|
|
|
#include "../engine/cdll_int.h"
|
|
|
|
|
extern cl_enginefunc_t gEngfuncs;
|
|
|
|
|
|
|
|
|
|
#endif
|