diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-10-25 00:21:10 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-10-25 00:21:10 +0800 |
commit | e504870c44f30b89276793ef13905315c9495b95 (patch) | |
tree | 0bd1cef5f7c1418236349744ddfbb66e8e5f3ac3 /e-util/e-pilot-map.c | |
parent | a0ca956fc439bcf30a3b6a5a5af6907cfb3b8ab8 (diff) | |
download | gsoc2013-evolution-e504870c44f30b89276793ef13905315c9495b95.tar.gz gsoc2013-evolution-e504870c44f30b89276793ef13905315c9495b95.tar.zst gsoc2013-evolution-e504870c44f30b89276793ef13905315c9495b95.zip |
Lookup a pid by uid. (e_pilot_map_lookup_uid): Lookup a uid by pid. Now
2000-10-23 JP Rosevear <jpr@helixcode.com>
* e-pilot-map.c (e_pilot_map_lookup_pid): Lookup a pid by uid.
(e_pilot_map_lookup_uid): Lookup a uid by pid.
Now this is wrapped, we can store archive info internally
* e-pilot-map.h: New accessor prototype
2000-10-23 JP Rosevear <jpr@helixcode.com>
* conduits/todo/todo-conduit.c (local_record_from_comp): Use
new e-pilot-map lookup function
(match): ditto
* conduits/calendar/calendar-conduit.c (local_record_from_comp): Use
new e-pilot-map lookup function
(match): ditto
svn path=/trunk/; revision=6146
Diffstat (limited to 'e-util/e-pilot-map.c')
-rw-r--r-- | e-util/e-pilot-map.c | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/e-util/e-pilot-map.c b/e-util/e-pilot-map.c index 4b364f39bd..3a1b660c60 100644 --- a/e-util/e-pilot-map.c +++ b/e-util/e-pilot-map.c @@ -98,7 +98,7 @@ map_write_foreach (gpointer key, gpointer value, gpointer data) } gboolean -e_pilot_map_pid_is_archived (EPilotMap *map, guint32 pilot_id) +e_pilot_map_pid_is_archived (EPilotMap *map, guint32 pid) { return FALSE; } @@ -122,6 +122,29 @@ e_pilot_map_insert (EPilotMap *map, guint32 pid, const char *uid, gboolean archi g_hash_table_insert (map->uid_map, new_uid, new_pid); } +guint32 +e_pilot_map_lookup_pid (EPilotMap *map, const char *uid) +{ + guint32 *pid; + + pid = g_hash_table_lookup (map->uid_map, uid); + + if (pid == NULL) + return 0; + + return *pid; +} + +const char * +e_pilot_map_lookup_uid (EPilotMap *map, guint32 pid) +{ + const char *uid; + + uid = g_hash_table_lookup (map->pid_map, &pid); + + return uid; +} + int e_pilot_map_read (const char *filename, EPilotMap **map) { |