aboutsummaryrefslogtreecommitdiffstats
path: root/src/module/GpgFrontendModuleExport.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-03-02 18:48:44 +0000
committersaturneric <[email protected]>2024-03-02 18:48:44 +0000
commit154ebea202d64669143ee6bb33f6327d141343c3 (patch)
tree3d9a6e5cac15f6575a4c1994ba8fd3d8607bfa65 /src/module/GpgFrontendModuleExport.h
parentrefactor: remove qt6 core5compat dependencies (diff)
downloadGpgFrontend-154ebea202d64669143ee6bb33f6327d141343c3.tar.gz
GpgFrontend-154ebea202d64669143ee6bb33f6327d141343c3.zip
refactor: reduce core prebuild headers and isolate core to modules
Diffstat (limited to 'src/module/GpgFrontendModuleExport.h')
-rw-r--r--src/module/GpgFrontendModuleExport.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/module/GpgFrontendModuleExport.h b/src/module/GpgFrontendModuleExport.h
deleted file mode 100644
index 33ecbd3b..00000000
--- a/src/module/GpgFrontendModuleExport.h
+++ /dev/null
@@ -1,42 +0,0 @@
-
-#ifndef GPGFRONTEND_MODULE_EXPORT_H
-#define GPGFRONTEND_MODULE_EXPORT_H
-
-#ifdef GPGFRONTEND_MODULE_STATIC_DEFINE
-# define GPGFRONTEND_MODULE_EXPORT
-# define GPGFRONTEND_MODULE_NO_EXPORT
-#else
-# ifndef GPGFRONTEND_MODULE_EXPORT
-# ifdef gpgfrontend_module_EXPORTS
- /* We are building this library */
-# define GPGFRONTEND_MODULE_EXPORT __attribute__((visibility("default")))
-# else
- /* We are using this library */
-# define GPGFRONTEND_MODULE_EXPORT __attribute__((visibility("default")))
-# endif
-# endif
-
-# ifndef GPGFRONTEND_MODULE_NO_EXPORT
-# define GPGFRONTEND_MODULE_NO_EXPORT __attribute__((visibility("hidden")))
-# endif
-#endif
-
-#ifndef GPGFRONTEND_MODULE_DEPRECATED
-# define GPGFRONTEND_MODULE_DEPRECATED __attribute__ ((__deprecated__))
-#endif
-
-#ifndef GPGFRONTEND_MODULE_DEPRECATED_EXPORT
-# define GPGFRONTEND_MODULE_DEPRECATED_EXPORT GPGFRONTEND_MODULE_EXPORT GPGFRONTEND_MODULE_DEPRECATED
-#endif
-
-#ifndef GPGFRONTEND_MODULE_DEPRECATED_NO_EXPORT
-# define GPGFRONTEND_MODULE_DEPRECATED_NO_EXPORT GPGFRONTEND_MODULE_NO_EXPORT GPGFRONTEND_MODULE_DEPRECATED
-#endif
-
-#if 0 /* DEFINE_NO_DEPRECATED */
-# ifndef GPGFRONTEND_MODULE_NO_DEPRECATED
-# define GPGFRONTEND_MODULE_NO_DEPRECATED
-# endif
-#endif
-
-#endif /* GPGFRONTEND_MODULE_EXPORT_H */