diff options
author | Not Zed <NotZed@Ximian.com> | 2005-01-13 08:55:22 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-01-13 08:55:22 +0800 |
commit | 70a4144cf3586d52a96f14ed3b2a120516d9bdfc (patch) | |
tree | af4743d276bde8f6a933cece6c7cd4aed67910e5 /plugins/new-mail-notify/new-mail-notify.h | |
parent | 90c261f15939271cbe959c87b7c3ef689b308f1d (diff) | |
download | gsoc2013-evolution-70a4144cf3586d52a96f14ed3b2a120516d9bdfc.tar.gz gsoc2013-evolution-70a4144cf3586d52a96f14ed3b2a120516d9bdfc.tar.zst gsoc2013-evolution-70a4144cf3586d52a96f14ed3b2a120516d9bdfc.zip |
added prototypes for exported functions, re-arranged slightly to staticise
2005-01-13 Not Zed <NotZed@Ximian.com>
* new-mail-notify.c: added prototypes for exported functions,
re-arranged slightly to staticise internal functions.
* new-mail-notify.h: removed.
2005-01-12 Miguel Angel Lopez Hernandez <miguel@gulev.org.mx>
* new-mail-notify.[ch]: Fix author's name, changes in code
to maintain coding style
(org_gnome_new_mail_notify): Now sends the dbus message using
the send_dbus_message function
(org_gnome_message_reading_notify): Added function, called when
a message.reading event is fired
(send_dbus_message): Added function, generic function to send
dbus messages
* org-gnome-new-mail-notify.eplug.in: define the message reading
event
svn path=/trunk/; revision=28383
Diffstat (limited to 'plugins/new-mail-notify/new-mail-notify.h')
-rw-r--r-- | plugins/new-mail-notify/new-mail-notify.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/new-mail-notify/new-mail-notify.h b/plugins/new-mail-notify/new-mail-notify.h index 7612f03d37..a0b3130475 100644 --- a/plugins/new-mail-notify/new-mail-notify.h +++ b/plugins/new-mail-notify/new-mail-notify.h @@ -1,6 +1,6 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* - * Author: Miguel Angel Lopez Hernandex <miguel@gulev.org.mx> + * Author: Miguel Angel Lopez Hernandez <miguel@gulev.org.mx> * * Copyright 2004 Novell, Inc. * @@ -32,5 +32,10 @@ org_gnome_new_mail_config (EPlugin *ep, EConfigHookItemFactoryData *hook_data); void org_gnome_new_mail_notify (EPlugin *ep, EMEventTargetFolder *t); +void +org_gnome_message_reading_notify (EPlugin *ep, EMEventTargetMessage *t); + +void +send_dbus_message (const char *message_name, const char *data); #endif /* __NMN_H__ */ |