From b4a3d3cb49861ba70136e3fa58ab0c3e90cae8b3 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Wed, 25 May 2005 10:51:00 +0000 Subject: implement the mono loader as a plugin itself. 2005-05-25 Not Zed * mono-plugin.c: implement the mono loader as a plugin itself. svn path=/trunk/; revision=29411 --- plugins/mono/mono-plugin.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 plugins/mono/mono-plugin.h (limited to 'plugins/mono/mono-plugin.h') diff --git a/plugins/mono/mono-plugin.h b/plugins/mono/mono-plugin.h new file mode 100644 index 0000000000..76e459f743 --- /dev/null +++ b/plugins/mono/mono-plugin.h @@ -0,0 +1,28 @@ + +#ifndef _ORG_GNOME_EVOLUTION_MONO_H +#define _ORG_GNOME_EVOLUTION_MONO_H + +#include "e-util/e-plugin.h" + +/* ********************************************************************** */ +/* This is ALL private */ + +typedef struct _EPluginMono EPluginMono; +typedef struct _EPluginMonoClass EPluginMonoClass; + +struct _EPluginMono { + EPlugin plugin; + + struct _EPluginMonoPrivate *priv; + + char *location; /* location */ + char *handler; /* handler class */ +}; + +struct _EPluginMonoClass { + EPluginClass plugin_class; +}; + +void *org_gnome_evolution_mono_get_type(void *a, void *b); + +#endif /* ! _ORG_GNOME_EVOLUTION_MONO_H */ -- cgit