diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 2000-01-12 12:25:38 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 2000-01-12 12:25:38 +0800 |
commit | c1209c281ed79b5dcc9c201f1968fba972c3641a (patch) | |
tree | f7ddae99a57045442873205a8088d5aa3f6cc9ea /shell/Evolution.idl | |
parent | f3c94fc0f415a4025add6debe451ca3e9e449d83 (diff) | |
download | gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.gz gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.bz2 gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.lz gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.xz gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.tar.zst gsoc2013-evolution-c1209c281ed79b5dcc9c201f1968fba972c3641a.zip |
More
More
svn path=/trunk/; revision=1561
Diffstat (limited to 'shell/Evolution.idl')
-rw-r--r-- | shell/Evolution.idl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/shell/Evolution.idl b/shell/Evolution.idl new file mode 100644 index 0000000000..936f60633e --- /dev/null +++ b/shell/Evolution.idl @@ -0,0 +1,32 @@ +/* + * CORBA interface for the Evolution shell + * + * Authors: + * Miguel de Icaza (miguel@kernel.org) + * + * (C) 2000 Helix Code, Inc. + */ +#include <bonobo.idl> + +module GNOME { + + module Evolution { + + interface Shell : GNOME::Unknown { + enum NewType { + APPOINTMENT, + MEETING_REQUEST, + TASK, + TASK_REQUEST, + CONTACT, + MAIL_MESSAGE, + DISTRIBUTION_LIST, + JOURNAL_ENTRY, + NOTE + }; + + void new (in NewType type); + }; + }; +}; + |