From 70057aca059a65b5dcbb317ae82f26136f069b5f Mon Sep 17 00:00:00 2001 From: IcePixelx <41352111+PixieCore@users.noreply.github.com> Date: Mon, 17 Jan 2022 02:51:22 +0100 Subject: [PATCH] Fixed types of InterfaceGlobals_t --- r5dev/vpc/interfaces.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/r5dev/vpc/interfaces.h b/r5dev/vpc/interfaces.h index aef3f6e3..55982391 100644 --- a/r5dev/vpc/interfaces.h +++ b/r5dev/vpc/interfaces.h @@ -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; };