From f9595bb213b103bf071e97ea2f93886767aa7f64 Mon Sep 17 00:00:00 2001 From: bertrand Date: Sun, 25 Apr 1999 11:21:33 +0000 Subject: new method to set the default provider for a protocol. 1999-04-25 bertrand * camel/camel-session.c (camel_session_set_provider): new method to set the default provider for a protocol. (camel_session_get_store_from_provider): new method to instantiate a folder from a provider. * camel/camel-provider.h: s/GString/gchar/g + typo fix. svn path=/trunk/; revision=878 --- camel/camel-session.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'camel/camel-session.h') diff --git a/camel/camel-session.h b/camel/camel-session.h index 2b6e40ae40..d6242182cd 100644 --- a/camel/camel-session.h +++ b/camel/camel-session.h @@ -32,7 +32,7 @@ extern "C" { #endif /* __cplusplus }*/ #include - +#include "camel-provider.h" #define CAMEL_SESSION_TYPE (camel_session_get_type ()) #define CAMEL_SESSION(obj) (GTK_CHECK_CAST((obj), CAMEL_SESSION_TYPE, CamelSession)) @@ -46,6 +46,9 @@ typedef struct _CamelSession CamelSession; struct _CamelSession { GtkObject parent_object; + GHashTable *store_provider_list; /* providers are identified by their protocol */ + GHashTable *transport_provider_list; + }; @@ -53,7 +56,7 @@ struct _CamelSession typedef struct { GtkObjectClass parent_class; - + /* Virtual methods */ } CamelSessionClass; @@ -66,6 +69,7 @@ GtkType camel_session_get_type (void); +void camel_session_set_provider (CamelSession *session, CamelProvider *provider); #ifdef __cplusplus -- cgit v1.2.3