add helper for plugins to get mail session.
2005-05-20 Not Zed <NotZed@Ximian.com> * mail-component.c (mail_component_peek_session): add helper for plugins to get mail session. svn path=/trunk/; revision=29396
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2005-05-20 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
* mail-component.c (mail_component_peek_session): add helper for
|
||||
plugins to get mail session.
|
||||
|
||||
2005-05-19 Chenthill Palanisamy <pchenthill@novell.com>
|
||||
|
||||
* mail.error.xml: Added a error message required for
|
||||
|
||||
@ -950,6 +950,13 @@ mail_component_peek_activity_handler (MailComponent *component)
|
||||
return component->priv->activity_handler;
|
||||
}
|
||||
|
||||
struct _CamelSession *mail_component_peek_session(MailComponent *component)
|
||||
{
|
||||
MAIL_COMPONENT_DEFAULT(component);
|
||||
|
||||
return session;
|
||||
}
|
||||
|
||||
void
|
||||
mail_component_add_store (MailComponent *component, CamelStore *store, const char *name)
|
||||
{
|
||||
|
||||
@ -71,6 +71,8 @@ const char *mail_component_peek_base_directory (MailComponent *componen
|
||||
struct _RuleContext *mail_component_peek_search_context (MailComponent *component);
|
||||
struct _EActivityHandler *mail_component_peek_activity_handler (MailComponent *component);
|
||||
|
||||
struct _CamelSession *mail_component_peek_session(MailComponent *);
|
||||
|
||||
void mail_component_add_store (MailComponent *component,
|
||||
struct _CamelStore *store,
|
||||
const char *name);
|
||||
|
||||
Reference in New Issue
Block a user