GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
ModuleInit.h
1 
29 #pragma once
30 
31 #include <spdlog/spdlog.h>
32 
33 #include "core/GpgFrontendCoreExport.h"
34 
35 namespace GpgFrontend::Module {
36 
38  spdlog::level::level_enum log_level;
39 };
40 
45 void GPGFRONTEND_CORE_EXPORT LoadGpgFrontendModules(ModuleInitArgs args);
46 
51 void GPGFRONTEND_CORE_EXPORT ShutdownGpgFrontendModules();
52 
53 }; // namespace GpgFrontend::Module
Definition: Event.cpp:33
void ShutdownGpgFrontendModules()
shutdown the module library
Definition: ModuleInit.cpp:115
void LoadGpgFrontendModules(ModuleInitArgs)
init the module library
Definition: ModuleInit.cpp:105
Definition: ModuleInit.h:37