~didrocks/ubuntuone-client/dont-suffer-zg-crash

« back to all changes in this revision

Viewing changes to libsyncdaemon/syncdaemon-filesystem-interface.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2010-06-23 23:08:15 UTC
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20100623230815-4m3ugh10u9x9xzw5
Tags: upstream-1.3.2
ImportĀ upstreamĀ versionĀ 1.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include "syncdaemon-daemon.h"
26
26
#include "syncdaemon-interface.h"
 
27
#include "syncdaemon-metadata.h"
27
28
 
28
29
G_BEGIN_DECLS
29
30
 
49
50
 
50
51
SyncdaemonFilesystemInterface *syncdaemon_filesystem_interface_new (SyncdaemonDaemon *daemon);
51
52
 
52
 
void                           syncdaemon_filesystem_interface_get_metadata (SyncdaemonFilesystemInterface *interface,
 
53
SyncdaemonMetadata            *syncdaemon_filesystem_interface_get_metadata (SyncdaemonFilesystemInterface *interface,
53
54
                                                                             const gchar *path);
54
55
 
 
56
typedef void (* SyncdaemonGotMetadataFunc) (SyncdaemonFilesystemInterface *interface,
 
57
                                            gboolean success,
 
58
                                            SyncdaemonMetadata *metadata,
 
59
                                            gpointer user_data);
 
60
 
 
61
void                           syncdaemon_filesystem_interface_get_metadata_async (SyncdaemonFilesystemInterface *interface,
 
62
                                                                                   const gchar *path,
 
63
                                                                                   SyncdaemonGotMetadataFunc callback,
 
64
                                                                                   gpointer user_data);
 
65
 
55
66
G_END_DECLS
56
67
 
57
68
#endif