Make Evolution compile with the latest Bonobo changes. Miguel. svn path=/trunk/; revision=1636
31 lines
532 B
Plaintext
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 ();
|
|
};
|
|
};
|
|
|