diff options
author | saturneric <[email protected]> | 2025-05-01 14:39:10 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-05-01 14:39:10 +0000 |
commit | c48a85cc0bcd6dd79e177d42ec27d7cc8262fd2d (patch) | |
tree | 45f3f09ccf9f38975881e4ce49901c0ae42ae3cc /src/core/module/ModuleInit.h | |
parent | fix: icon on linux platfrom (diff) | |
download | GpgFrontend-c48a85cc0bcd6dd79e177d42ec27d7cc8262fd2d.tar.gz GpgFrontend-c48a85cc0bcd6dd79e177d42ec27d7cc8262fd2d.zip |
refactor: add cmake functions to register module and library
Diffstat (limited to 'src/core/module/ModuleInit.h')
-rw-r--r-- | src/core/module/ModuleInit.h | 6 |
1 files changed, 2 insertions, 4 deletions
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 |