aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/idl/evolution-calendar.idl
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/idl/evolution-calendar.idl')
-rw-r--r--calendar/idl/evolution-calendar.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl
index b7340bf51a..f81cfbecf8 100644
--- a/calendar/idl/evolution-calendar.idl
+++ b/calendar/idl/evolution-calendar.idl
@@ -45,6 +45,9 @@ module Calendar {
/* Used to store a time_t */
typedef unsigned long Time_t;
+ /* Used to store pilot IDs */
+ typedef unsigned long PilotID;
+
/* An instance of a calendar object that actually occurs. These are
* "virtual" objects in that they are used to represent instances of
* recurring events and alarms. "Real" objects just contain the
@@ -107,6 +110,23 @@ module Calendar {
in Time_t start, in Time_t end)
raises (NotFound, InvalidRange);
+
+ /* something
+ *
+ */
+ CalObjUID get_uid_by_pilot_id (in PilotID pilotid)
+ raises (NotFound);
+
+
+ /*
+ * update_pilot_id:
+ * @uid: Unique identifier for the event we want to update
+ * @pilot_id: new ID assigned by the pilot
+ * @pilot_status: Status to flag the event with
+ */
+ void update_pilot_id (in CalObjUID uid, in PilotID pilot_id, in unsigned long pilot_status)
+ raises (NotFound);
+
/* Updates an object by adding it if it does not exist or by
* changing an existing one.
*/