mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 01:02:04 +00:00
12 lines
278 B
C
12 lines
278 B
C
|
#if !defined( HUD_IFACEH )
|
||
|
#define HUD_IFACEH
|
||
|
#pragma once
|
||
|
|
||
|
#define EXPORT _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
|