mirror of
https://github.com/rehlds/metamod-r.git
synced 2025-01-08 13:05:50 +03:00
12 lines
366 B
C
12 lines
366 B
C
|
#ifndef H_EXPORT_H
|
||
|
#define H_EXPORT_H
|
||
|
|
||
|
#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);
|
||
|
|
||
|
#endif /* H_EXPORT_H */
|