From c37d7a6b0cd7928b18648b8d87043662281eda4b Mon Sep 17 00:00:00 2001 From: Marvin D <41352111+IcePixelx@users.noreply.github.com> Date: Sat, 20 Aug 2022 12:45:14 +0200 Subject: [PATCH] remove versioning, will be handled by factory. --- r5dev/pluginsystem/pluginsystem.cpp | 1 - r5dev/pluginsystem/pluginsystem.h | 1 - 2 files changed, 2 deletions(-) diff --git a/r5dev/pluginsystem/pluginsystem.cpp b/r5dev/pluginsystem/pluginsystem.cpp index 6d295018..2004a7bc 100644 --- a/r5dev/pluginsystem/pluginsystem.cpp +++ b/r5dev/pluginsystem/pluginsystem.cpp @@ -7,7 +7,6 @@ //=============================================================================// #include "core/stdafx.h" -#include "vpc/interfaces.h" #include "pluginsystem.h" //----------------------------------------------------------------------------- diff --git a/r5dev/pluginsystem/pluginsystem.h b/r5dev/pluginsystem/pluginsystem.h index fe85e2a7..b3633407 100644 --- a/r5dev/pluginsystem/pluginsystem.h +++ b/r5dev/pluginsystem/pluginsystem.h @@ -25,7 +25,6 @@ public: // Might wanna make a status code system. typedef void(*OnLoad)(CModule, CModule); typedef void(*OnUnload)(CModule); - typedef int16_t(*GetVersion)(); typedef const char* (*GetDescription)(); CModule m_hModule;