diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-17 11:48:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-17 11:48:03 +0800 |
commit | 54b80a7271e8ce1b2f3ccc68bb553940a24b80e2 (patch) | |
tree | 74dd75a7dca547164ff4be88c07d407517663105 /shell/e-shell-module.h | |
parent | 79aa45cfed7e87150de85869795ef0dd3be06db0 (diff) | |
download | gsoc2013-evolution-54b80a7271e8ce1b2f3ccc68bb553940a24b80e2.tar.gz gsoc2013-evolution-54b80a7271e8ce1b2f3ccc68bb553940a24b80e2.tar.zst gsoc2013-evolution-54b80a7271e8ce1b2f3ccc68bb553940a24b80e2.zip |
Get the mail folder tree compiling, though I'm not yet sure why it's not
showing anything. Probably something stupid. Also enabled the composer.
svn path=/branches/kill-bonobo/; revision=36623
Diffstat (limited to 'shell/e-shell-module.h')
-rw-r--r-- | shell/e-shell-module.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shell/e-shell-module.h b/shell/e-shell-module.h index 24bc690533..7186b13a62 100644 --- a/shell/e-shell-module.h +++ b/shell/e-shell-module.h @@ -60,6 +60,9 @@ typedef struct _EShellModuleInfo EShellModuleInfo; typedef struct _EShellModuleClass EShellModuleClass; typedef struct _EShellModulePrivate EShellModulePrivate; +typedef struct _EShellModuleEvent EShellModuleEvent; +typedef void (*EShellModuleEventFunc) (EShellModuleEvent *event); + /** * EShellModuleInfo: * @name: The name of the module. Also becomes the name of @@ -85,6 +88,10 @@ typedef struct _EShellModulePrivate EShellModulePrivate; * settings from the given version. Returns %TRUE if the * migration was successful or if no action was necessary. * Returns %FALSE and sets a #GError if the migration failed. + * + * Provides basic information about an #EShellModule instance. Shell + * modules should pass this structure to e_shell_module_set_info() in + * their "e_shell_module_init" functions. **/ struct _EShellModuleInfo { const gchar *name; |