2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-01-07 12:35:48 +03:00
metamod-r/metamod/src/h_export.h

9 lines
316 B
C
Raw Normal View History

2016-07-26 03:22:47 +03:00
#pragma once
2016-07-04 10:11:20 +03:00
#include "osdep.h" // DLLEXPORT, WINAPI, etc
// Our GiveFnptrsToDll, called by engine.
typedef void (WINAPI *GIVE_ENGINE_FUNCTIONS_FN) (enginefuncs_t *pengfuncsFromEngine, globalvars_t *pGlobals);
C_DLLEXPORT void WINAPI GiveFnptrsToDll(enginefuncs_t *pengfuncsFromEngine, globalvars_t *pGlobals);