~ubuntu-branches/ubuntu/trusty/udisks2/trusty-proposed

« back to all changes in this revision

Viewing changes to src/udisksdaemon.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2012-07-28 13:35:04 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120728133504-jmxgy789jegi5vmo
Tags: 1.99.0-1
* New upstream release (LP: #1030268)
  - Support Realtek rts5229 SD/MMC card readers. (LP: #1022497)
* Drop 00git_no_polkit_fallback.patch, upstream now.
* Drop debian/local/integration-test, shipped in upstream tarball now.
* debian/tests/upstream-system: Run test suite from upstream source.
* debian/tests/control: Simplify Depends: line using "@".
* debian/tests/control: Drop undefined "no-build-needed" feature.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
 
77
77
UDisksBaseJob            *udisks_daemon_launch_simple_job     (UDisksDaemon    *daemon,
78
78
                                                               UDisksObject    *object,
 
79
                                                               const gchar     *job_operation,
 
80
                                                               uid_t            job_started_by_uid,
79
81
                                                               GCancellable    *cancellable);
80
82
UDisksBaseJob            *udisks_daemon_launch_spawned_job    (UDisksDaemon    *daemon,
81
83
                                                               UDisksObject    *object,
 
84
                                                               const gchar     *job_operation,
 
85
                                                               uid_t            job_started_by_uid,
82
86
                                                               GCancellable    *cancellable,
83
87
                                                               uid_t            run_as_uid,
84
88
                                                               uid_t            run_as_euid,
85
89
                                                               const gchar     *input_string,
86
90
                                                               const gchar     *command_line_format,
87
 
                                                               ...) G_GNUC_PRINTF (7, 8);
 
91
                                                               ...) G_GNUC_PRINTF (9, 10);
88
92
gboolean                  udisks_daemon_launch_spawned_job_sync (UDisksDaemon    *daemon,
89
93
                                                                 UDisksObject    *object,
 
94
                                                                 const gchar     *job_operation,
 
95
                                                                 uid_t            job_started_by_uid,
90
96
                                                                 GCancellable    *cancellable,
91
97
                                                                 uid_t            run_as_uid,
92
98
                                                                 uid_t            run_as_euid,
94
100
                                                                 gchar          **out_message,
95
101
                                                                 const gchar     *input_string,
96
102
                                                                 const gchar     *command_line_format,
97
 
                                                                 ...) G_GNUC_PRINTF (9, 10);
 
103
                                                                 ...) G_GNUC_PRINTF (11, 12);
98
104
UDisksBaseJob            *udisks_daemon_launch_threaded_job   (UDisksDaemon    *daemon,
99
105
                                                               UDisksObject    *object,
 
106
                                                               const gchar     *job_operation,
 
107
                                                               uid_t            job_started_by_uid,
100
108
                                                               UDisksThreadedJobFunc job_func,
101
109
                                                               gpointer         user_data,
102
110
                                                               GDestroyNotify   user_data_free_func,