24 lines
591 B
C
Raw Normal View History

2015-10-25 16:13:41 +06:00
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#if !defined( HUD_IFACEH )
#define HUD_IFACEH
#pragma once
2015-10-25 17:30:37 +06:00
#ifdef _WIN32
2015-10-25 16:13:41 +06:00
#define EXPORT _declspec( dllexport )
#define _DLLEXPORT __declspec( dllexport )
2015-10-25 17:30:37 +06:00
#else
#define EXPORT
#define _DLLEXPORT
#endif
2015-10-25 16:13:41 +06:00
typedef int (*pfnUserMsgHook)(const char *pszName, int iSize, void *pbuf);
#include "wrect.h"
#include "../engine/cdll_int.h"
extern cl_enginefunc_t gEngfuncs;
2015-10-25 17:30:37 +06:00
#endif