aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-plugin.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-10-07 22:38:09 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-10-07 22:38:09 +0800
commit97acafac6ef6bc099688e5c2622edd1de3e27633 (patch)
tree337d943fbeb96b313cf049b72236425551d1c3f5 /e-util/e-plugin.h
parent0943a0e436c7510c39d86ab7a72a4ebbd3a876ac (diff)
downloadgsoc2013-evolution-97acafac6ef6bc099688e5c2622edd1de3e27633.tar
gsoc2013-evolution-97acafac6ef6bc099688e5c2622edd1de3e27633.tar.gz
gsoc2013-evolution-97acafac6ef6bc099688e5c2622edd1de3e27633.tar.bz2
gsoc2013-evolution-97acafac6ef6bc099688e5c2622edd1de3e27633.tar.lz
gsoc2013-evolution-97acafac6ef6bc099688e5c2622edd1de3e27633.tar.xz
gsoc2013-evolution-97acafac6ef6bc099688e5c2622edd1de3e27633.tar.zst
gsoc2013-evolution-97acafac6ef6bc099688e5c2622edd1de3e27633.zip
Fix the function pointer types!
2004-10-07 Not Zed <NotZed@Ximian.com> * e-plugin.h: Fix the function pointer types! svn path=/trunk/; revision=27499
Diffstat (limited to 'e-util/e-plugin.h')
-rw-r--r--e-util/e-plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-plugin.h b/e-util/e-plugin.h
index 1ecc75b308..95a013c665 100644
--- a/e-util/e-plugin.h
+++ b/e-util/e-plugin.h
@@ -103,11 +103,11 @@ typedef struct _EPluginLib EPluginLib;
typedef struct _EPluginLibClass EPluginLibClass;
/* The callback signature used for epluginlib methods */
-typedef void *(EPluginLibFunc)(EPluginLib *ep, void *data);
+typedef void *(*EPluginLibFunc)(EPluginLib *ep, void *data);
/* The setup method, this will be called when the plugin is
* initialised. In the future it may also be called when the plugin
* is disabled. */
-typedef int (EPluginLibEnableFunc)(EPluginLib *ep, int enable);
+typedef int (*EPluginLibEnableFunc)(EPluginLib *ep, int enable);
/**
* struct _EPluginLib -