diff options
author | Felix Riemann <[email protected]> | 2012-08-12 15:53:18 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-17 21:53:38 +0200 |
commit | bb3b0c0a009cbf5f699a37c656b43bdc5a12b7b0 (patch) | |
tree | 38ed9f81943477b6f999d5fecf0c543c9d87a21c /src/eom-application.h | |
parent | 57506ffd5c8f99a2461c538c61ebe38653760dd7 (diff) | |
download | eom-bb3b0c0a009cbf5f699a37c656b43bdc5a12b7b0.tar.bz2 eom-bb3b0c0a009cbf5f699a37c656b43bdc5a12b7b0.tar.xz |
Add new plugin hook for per-application plugins
These will be loaded on application initialization and disabled
once the application is disposed.
origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/cdfe77e
Diffstat (limited to 'src/eom-application.h')
-rw-r--r-- | src/eom-application.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/eom-application.h b/src/eom-application.h index 16c4419..01e8887 100644 --- a/src/eom-application.h +++ b/src/eom-application.h @@ -32,6 +32,8 @@ #include <glib.h> #include <glib-object.h> +#include <libpeas/peas-extension-set.h> + G_BEGIN_DECLS typedef struct _EomApplication EomApplication; @@ -56,6 +58,8 @@ struct _EomApplication { EomPluginEngine *plugin_engine; EomStartupFlags flags; + + PeasExtensionSet *extensions; }; struct _EomApplicationClass { |