diff options
author | Richard Jones <rjones@redhat.com> | 2009-06-08 17:44:18 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-06-08 17:44:18 +0100 |
commit | 460d139e6a52da67a4f1947035b1978610349f78 (patch) | |
tree | 798177aa71bc9615074cd1a9a351ff4b38165c7c /src/guestfs_protocol.x | |
parent | 3de234656bc61a2d35b0f1a9ccb1e6ef7535166b (diff) | |
download | libguestfs-460d139e6a52da67a4f1947035b1978610349f78.tar.gz libguestfs-460d139e6a52da67a4f1947035b1978610349f78.tar.xz libguestfs-460d139e6a52da67a4f1947035b1978610349f78.zip |
Generated code for ntfs_3g_probe command.
Diffstat (limited to 'src/guestfs_protocol.x')
-rw-r--r-- | src/guestfs_protocol.x | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/guestfs_protocol.x b/src/guestfs_protocol.x index 556ed60e..cc514e74 100644 --- a/src/guestfs_protocol.x +++ b/src/guestfs_protocol.x @@ -723,6 +723,15 @@ struct guestfs_sleep_args { int secs; }; +struct guestfs_ntfs_3g_probe_args { + bool rw; + string device<>; +}; + +struct guestfs_ntfs_3g_probe_ret { + int status; +}; + enum guestfs_procedure { GUESTFS_PROC_MOUNT = 1, GUESTFS_PROC_SYNC = 2, @@ -833,6 +842,7 @@ enum guestfs_procedure { GUESTFS_PROC_FIND = 107, GUESTFS_PROC_E2FSCK_F = 108, GUESTFS_PROC_SLEEP = 109, + GUESTFS_PROC_NTFS_3G_PROBE = 110, GUESTFS_PROC_NR_PROCS }; |