Cleanup xash3d_types.h from engine-specific macros and types

This commit is contained in:
Alibek Omarov
2025-01-22 15:09:18 +03:00
parent 787444f63d
commit 375998dffb
11 changed files with 58 additions and 58 deletions

View File

@@ -107,6 +107,12 @@ int matchpattern_with_separator( const char *in, const char *pattern, qboolean c
//
// dllhelpers.c
//
typedef struct dllfunc_s
{
const char *name;
void **func;
} dllfunc_t;
void ClearExports( const dllfunc_t *funcs, size_t num_funcs );
qboolean ValidateExports( const dllfunc_t *funcs, size_t num_funcs );