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/GpgCoreInit.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/GpgCoreInit.h')
-rw-r--r-- | src/core/GpgCoreInit.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/core/GpgCoreInit.h b/src/core/GpgCoreInit.h index 0a35d6d1..937bbc88 100644 --- a/src/core/GpgCoreInit.h +++ b/src/core/GpgCoreInit.h @@ -28,7 +28,6 @@ #pragma once -#include "core/GpgFrontendCoreExport.h" #include "core/model/KeyDatabaseInfo.h" namespace GpgFrontend { @@ -42,19 +41,19 @@ struct CoreInitArgs { * @brief * */ -void GPGFRONTEND_CORE_EXPORT DestroyGpgFrontendCore(); +void GF_CORE_EXPORT DestroyGpgFrontendCore(); /** * @brief * */ -auto GPGFRONTEND_CORE_EXPORT InitGpgFrontendCore(CoreInitArgs) -> int; +auto GF_CORE_EXPORT InitGpgFrontendCore(CoreInitArgs) -> int; /** * @brief * */ -void GPGFRONTEND_CORE_EXPORT StartMonitorCoreInitializationStatus(); +void GF_CORE_EXPORT StartMonitorCoreInitializationStatus(); /** * @brief @@ -62,7 +61,7 @@ void GPGFRONTEND_CORE_EXPORT StartMonitorCoreInitializationStatus(); * @return true * @return false */ -auto GPGFRONTEND_CORE_EXPORT InitGpgME() -> bool; +auto GF_CORE_EXPORT InitGpgME() -> bool; /** * @brief @@ -70,6 +69,6 @@ auto GPGFRONTEND_CORE_EXPORT InitGpgME() -> bool; * @return true * @return false */ -auto GPGFRONTEND_CORE_EXPORT InitBasicPath() -> bool; +auto GF_CORE_EXPORT InitBasicPath() -> bool; } // namespace GpgFrontend |