aboutsummaryrefslogtreecommitdiffstats
path: root/src/module/GpgFrontendModuleExport.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-04-21 19:49:04 +0000
committersaturneric <[email protected]>2024-04-21 19:49:04 +0000
commit571a2906063739067e40a02aadd8c265082359de (patch)
tree5ac57f777ec38f6a5f328da4e3df6ad6cc010aff /src/module/GpgFrontendModuleExport.h
parentfix: could not determine the path to the executable based on the desktop file (diff)
parentfeat: adapt linux appimage of modules loading (diff)
downloadGpgFrontend-571a2906063739067e40a02aadd8c265082359de.tar.gz
GpgFrontend-571a2906063739067e40a02aadd8c265082359de.zip
Merge branch 'dev/2.1.2/module' into develop
Diffstat (limited to '')
-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 */