From db72a5c42ebb8085532e9ee3ae7b3139f3906d18 Mon Sep 17 00:00:00 2001 From: O-Robotic Date: Tue, 8 Oct 2024 13:18:45 +0100 Subject: [PATCH] Fix GetFactorySystem not being exported --- src/vpc/interfaces.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vpc/interfaces.h b/src/vpc/interfaces.h index cdd79bca..c050c554 100644 --- a/src/vpc/interfaces.h +++ b/src/vpc/interfaces.h @@ -49,7 +49,7 @@ public: }; extern CFactorySystem g_FactorySystem; -PLATFORM_INTERFACE IFactorySystem* GetFactorySystem(); +DLL_EXPORT IFactorySystem* GetFactorySystem(); /////////////////////////////////////////////////////////////////////////////// inline void*(*v_CreateInterfaceInternal)(const char* pName, int* pReturnCode);