aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-service.h
diff options
context:
space:
mode:
authorbertrand <bertrand@helixcode.com>2000-03-12 23:17:01 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>2000-03-12 23:17:01 +0800
commit5adb1dedf6e2fedd68edecc67f8badb28994dce7 (patch)
tree7cb2cec0e80c9521287661870618ee35549c1451 /shell/e-service.h
parent6e515d204a3477cabe2d5dd934ee45406c528ab5 (diff)
downloadgsoc2013-evolution-5adb1dedf6e2fedd68edecc67f8badb28994dce7.tar
gsoc2013-evolution-5adb1dedf6e2fedd68edecc67f8badb28994dce7.tar.gz
gsoc2013-evolution-5adb1dedf6e2fedd68edecc67f8badb28994dce7.tar.bz2
gsoc2013-evolution-5adb1dedf6e2fedd68edecc67f8badb28994dce7.tar.lz
gsoc2013-evolution-5adb1dedf6e2fedd68edecc67f8badb28994dce7.tar.xz
gsoc2013-evolution-5adb1dedf6e2fedd68edecc67f8badb28994dce7.tar.zst
gsoc2013-evolution-5adb1dedf6e2fedd68edecc67f8badb28994dce7.zip
Implementation of the service repository interface as a bonobo object.
2000-03-12 bertrand <bertrand@helixcode.com> * shell/evolution-service-repository.c: * shell/evolution-service-repository.h: Implementation of the service repository interface as a bonobo object. * shell/evolution-service-repository.idl: new file. Contains the definition for the service repository interface. * shell/Shell.idl: move the shell related stuff here svn path=/trunk/; revision=2103
Diffstat (limited to 'shell/e-service.h')
-rw-r--r--shell/e-service.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/e-service.h b/shell/e-service.h
index 54d54d6b38..3488d613ee 100644
--- a/shell/e-service.h
+++ b/shell/e-service.h
@@ -59,6 +59,7 @@
#ifndef _E_SERVICE_H_
#define _E_SERVICE_H_
+#include "eshell-types.h"
#include <gtk/gtkobject.h>
#define E_SERVICE_TYPE (e_service_get_type ())
@@ -76,7 +77,8 @@ typedef enum {
E_SERVICE_OTHER = 1 << 4
} EServiceType;
-typedef struct {
+ struct _EService {
+
GtkObject parent_object;
EFolder *root_efolder; /* a service may have a root EFolder */
@@ -92,7 +94,7 @@ typedef struct {
EServiceType type; /* type of the service */
-} EService;
+};
typedef struct {
GtkObjectClass parent_class;