~ubuntu-branches/ubuntu/utopic/almanah/utopic

« back to all changes in this revision

Viewing changes to src/export-operation.h

  • Committer: Package Import Robot
  • Author(s): Angel Abad
  • Date: 2012-10-29 10:14:18 UTC
  • mfrom: (1.4.1) (10.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20121029101418-k2c27xb0aku22zeg
Tags: 0.10.0-1~exp1
* Imported Upstream version 0.10.0
* debian/control:
  - Bump evolution Build-Depends ( >=3.6.0)
  - debian/control: Depends on evolution-common (>= 3.6.0)
* Bump Standards-Version to 3.9.4 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <glib.h>
24
24
#include <glib-object.h>
25
25
 
 
26
#include "storage-manager.h"
 
27
 
26
28
G_BEGIN_DECLS
27
29
 
28
30
typedef guint AlmanahExportOperationType;
49
51
 
50
52
GType almanah_export_operation_get_type (void) G_GNUC_CONST;
51
53
 
52
 
AlmanahExportOperation *almanah_export_operation_new (AlmanahExportOperationType type_id, GFile *destination) G_GNUC_WARN_UNUSED_RESULT G_GNUC_MALLOC;
 
54
AlmanahExportOperation *almanah_export_operation_new (AlmanahExportOperationType type_id, AlmanahStorageManager *source_storage_manager,
 
55
                                                      GFile *destination) G_GNUC_WARN_UNUSED_RESULT G_GNUC_MALLOC;
53
56
 
54
57
void almanah_export_operation_run (AlmanahExportOperation *self, GCancellable *cancellable,
55
58
                                   AlmanahExportProgressCallback progress_callback, gpointer progress_user_data,