2001-11-08 00:00:00 +00:00
|
|
|
|
//========= Copyright <20> 1996-2001, Valve LLC, All rights reserved. ============
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
2000-06-05 00:00:00 +00:00
|
|
|
|
#if !defined( HUD_IFACEH )
|
|
|
|
|
#define HUD_IFACEH
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#define EXPORT _declspec( dllexport )
|
|
|
|
|
#define _DLLEXPORT __declspec( dllexport )
|
|
|
|
|
|
|
|
|
|
typedef int (*pfnUserMsgHook)(const char *pszName, int iSize, void *pbuf);
|
|
|
|
|
#include "wrect.h"
|
|
|
|
|
#include "../engine/cdll_int.h"
|
|
|
|
|
extern cl_enginefunc_t gEngfuncs;
|
|
|
|
|
|
|
|
|
|
#endif
|