mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 04:21:30 +00:00
24 lines
572 B
C
24 lines
572 B
C
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#if !defined( HUD_IFACEH )
|
|||
|
#define HUD_IFACEH
|
|||
|
#pragma once
|
|||
|
|
|||
|
#ifdef _WIN32
|
|||
|
#define EXPORT _declspec( dllexport )
|
|||
|
#else
|
|||
|
#define EXPORT __attribute__ ((visibility("default")))
|
|||
|
#endif
|
|||
|
#define _DLLEXPORT EXPORT
|
|||
|
|
|||
|
typedef int (*pfnUserMsgHook)(const char *pszName, int iSize, void *pbuf);
|
|||
|
#include "wrect.h"
|
|||
|
#include "../engine/cdll_int.h"
|
|||
|
extern cl_enginefunc_t gEngfuncs;
|
|||
|
|
|||
|
#endif
|