diff options
Diffstat (limited to 'shell/Evolution-common.idl')
-rw-r--r-- | shell/Evolution-common.idl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/shell/Evolution-common.idl b/shell/Evolution-common.idl new file mode 100644 index 0000000000..25f824f612 --- /dev/null +++ b/shell/Evolution-common.idl @@ -0,0 +1,31 @@ +/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Common definitions for the CORBA interface for the Evolution shell. + * + * Authors: + * Ettore Perazzoli <ettore@ximian.com> + * + * Copyright (C) 2000, 2001 Ximian, Inc. + */ + +module GNOME { +module Evolution { + +struct Folder { + string type; + string description; + string display_name; + string physical_uri; + long unread_count; +}; + +struct Icon { + short width, height; + boolean hasAlpha; + sequence <octet> rgba_data; // Row-by-row, left-to-right, top-to-bottom RGBA bytes +}; +typedef sequence <Icon> AnimatedIcon; + +}; +}; + |