~mandel/ubuntuone-client/donot-add-watches-parents

« back to all changes in this revision

Viewing changes to libsyncdaemon/syncdaemon-daemon.h

  • Committer: Rodrigo Moya
  • Date: 2010-06-04 10:09:15 UTC
  • mto: This revision was merged to the branch mainline in revision 533.
  • Revision ID: rodrigo.moya@canonical.com-20100604100915-hnzg2pj6107fdf5g
Added SyncdaemonEventsInterface class

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
        void (* connected) (SyncdaemonDaemon *daemon);
49
49
        void (* disconnected) (SyncdaemonDaemon *daemon);
50
50
 
 
51
        void (* event) (SyncdaemonDaemon *daemon, GHashTable *event_dict);
51
52
        void (* error) (SyncdaemonDaemon *daemon, const gchar *signal, GHashTable *extra_args);
52
53
} SyncdaemonDaemonClass;
53
54
 
60
61
const gchar         *syncdaemon_daemon_get_root_dir (SyncdaemonDaemon *daemon);
61
62
 
62
63
SyncdaemonInterface *syncdaemon_daemon_get_config_interface (SyncdaemonDaemon *daemon);
 
64
SyncdaemonInterface *syncdaemon_daemon_get_events_interface (SyncdaemonDaemon *daemon);
63
65
SyncdaemonInterface *syncdaemon_daemon_get_status_interface (SyncdaemonDaemon *daemon);
64
66
 
65
67
G_END_DECLS