Fixed types of InterfaceGlobals_t

This commit is contained in:
IcePixelx 2022-01-17 02:51:22 +01:00
parent 98bb9b4655
commit 70057aca05

View File

@ -7,9 +7,11 @@
//-----------------------------------------------------------------------------
// Mapping of interface string to globals
//-----------------------------------------------------------------------------
typedef void* (*InstantiateInterfaceFn)();
struct InterfaceGlobals_t
{
std::int64_t(*m_pInterfacePtr)(void);
InstantiateInterfaceFn m_pInterfacePtr;
const char* m_pInterfaceName;
std::int64_t* m_pNextInterfacePtr;
InterfaceGlobals_t* m_pNextInterfacePtr;
};