Files
evolution/mail/Mail.idl
Arturo Espinosa 9f31ce86ff Make Evolution compile with the latest Bonobo changes.
Make Evolution compile with the latest Bonobo changes.

Miguel.

svn path=/trunk/; revision=1636
2000-01-26 00:04:16 +00:00

31 lines
532 B
Plaintext

/*
* mail.idl: Mail interfaces for Evolution
*
* Author:
* Miguel de Icaza (miguel@helixcode.com)
*
* (C) 2000 Helix Code, Inc.
*/
#include <Bonobo.idl>
module Evolution {
interface MessageList : Bonobo::Unknown {
void select_message (in long message_number);
void open_message (in long message_number);
};
/*
* FolderBrowser object.
*
* configuration of this widget is done trough
* Bonobo Properties
*/
interface FolderBrowser : Bonobo::Unknown {
MessageList get_message_list ();
};
};