From c48a85cc0bcd6dd79e177d42ec27d7cc8262fd2d Mon Sep 17 00:00:00 2001 From: saturneric Date: Thu, 1 May 2025 16:39:10 +0200 Subject: refactor: add cmake functions to register module and library --- src/core/module/ModuleInit.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/core/module/ModuleInit.h') diff --git a/src/core/module/ModuleInit.h b/src/core/module/ModuleInit.h index c6e4b82b..2b9d42e4 100644 --- a/src/core/module/ModuleInit.h +++ b/src/core/module/ModuleInit.h @@ -28,8 +28,6 @@ #pragma once -#include "core/GpgFrontendCoreExport.h" - namespace GpgFrontend::Module { struct ModuleInitArgs {}; @@ -38,12 +36,12 @@ struct ModuleInitArgs {}; * @brief init the module library * */ -void GPGFRONTEND_CORE_EXPORT LoadGpgFrontendModules(ModuleInitArgs args); +void GF_CORE_EXPORT LoadGpgFrontendModules(ModuleInitArgs args); /** * @brief shutdown the module library * */ -void GPGFRONTEND_CORE_EXPORT ShutdownGpgFrontendModules(); +void GF_CORE_EXPORT ShutdownGpgFrontendModules(); }; // namespace GpgFrontend::Module -- cgit v1.2.3