diff options
author | nobody <nobody@localhost> | 2000-01-09 17:59:30 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-01-09 17:59:30 +0800 |
commit | d67c559595271a981f485029a259afbae3bdf811 (patch) | |
tree | 3706e32ce82bbc0192d4ae47d592662ca1ab5a81 /calendar/todo-conduit.h | |
parent | 7f8cd0fc327c44f96890639293b2a258adbe1398 (diff) | |
download | gsoc2013-evolution-GNOME_PILOT_0_1_47.tar gsoc2013-evolution-GNOME_PILOT_0_1_47.tar.gz gsoc2013-evolution-GNOME_PILOT_0_1_47.tar.bz2 gsoc2013-evolution-GNOME_PILOT_0_1_47.tar.lz gsoc2013-evolution-GNOME_PILOT_0_1_47.tar.xz gsoc2013-evolution-GNOME_PILOT_0_1_47.tar.zst gsoc2013-evolution-GNOME_PILOT_0_1_47.zip |
This commit was manufactured by cvs2svn to create tagGNOME_PILOT_0_1_47
'GNOME_PILOT_0_1_47'.
svn path=/tags/GNOME_PILOT_0_1_47/; revision=1547
Diffstat (limited to 'calendar/todo-conduit.h')
-rw-r--r-- | calendar/todo-conduit.h | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/calendar/todo-conduit.h b/calendar/todo-conduit.h deleted file mode 100644 index c224b2b1f3..0000000000 --- a/calendar/todo-conduit.h +++ /dev/null @@ -1,59 +0,0 @@ -/* $Id$ */ - -#ifndef __TODO_CONDUIT_H__ -#define __TODO_CONDUIT_H__ - -#include <sys/types.h> -#include <fcntl.h> -#include <unistd.h> -#include <pi-todo.h> -#include <gnome.h> - -typedef struct _ConduitCfg ConduitCfg; - -struct _ConduitCfg { - gboolean open_secret; - guint32 pilotId; -}; - -#define GET_CONFIG(c) ((ConduitCfg*)gtk_object_get_data(GTK_OBJECT(c),"conduit_cfg")) - -typedef struct _ConduitData ConduitData; - -struct _ConduitData { - struct ToDoAppInfo ai; -}; - -#define GET_DATA(c) ((ConduitData*)gtk_object_get_data(GTK_OBJECT(c),"conduit_data")) - -static void load_configuration(ConduitCfg **c,guint32 pilotId) { - gchar prefix[256]; - g_snprintf(prefix,255,"/gnome-pilot.d/todod-conduit/Pilot_%u/",pilotId); - - *c = g_new0(ConduitCfg,1); - gnome_config_push_prefix(prefix); - (*c)->open_secret = gnome_config_get_bool("open secret=FALSE"); - gnome_config_pop_prefix(); - - (*c)->pilotId = pilotId; -} - -static void save_configuration(ConduitCfg *c) { - gchar prefix[256]; - - g_snprintf(prefix,255,"/gnome-pilot.d/todo-conduit/Pilot_%u/",c->pilotId); - - gnome_config_push_prefix(prefix); - gnome_config_set_bool("open secret",c->open_secret); - gnome_config_pop_prefix(); - - gnome_config_sync(); - gnome_config_drop_all(); -} - -static void destroy_configuration(ConduitCfg **c) { - g_free(*c); - *c = NULL; -} - -#endif __TODO_CONDUIT_H__ |