summaryrefslogtreecommitdiffstats
path: root/src/guestfs-structs.h
diff options
context:
space:
mode:
authorRichard Jones <rjones@centos5x32.home.annexia.org>2009-07-03 00:22:14 +0100
committerRichard Jones <rjones@centos5x32.home.annexia.org>2009-07-03 00:22:14 +0100
commit6fb57e430c8daa06d8d938ac02a104c8aadbbda5 (patch)
tree38586363a6a7d68e5559347d1cc7671593c81aed /src/guestfs-structs.h
parentb7e094fa14b306fe776b9b2695cf82fa32d4923f (diff)
parentee4c49fad5a3e36c6e909ab90bcb7d719c9395b3 (diff)
downloadlibguestfs-6fb57e430c8daa06d8d938ac02a104c8aadbbda5.tar.gz
libguestfs-6fb57e430c8daa06d8d938ac02a104c8aadbbda5.tar.xz
libguestfs-6fb57e430c8daa06d8d938ac02a104c8aadbbda5.zip
Merge branch 'master' of git+ssh://192.168.122.1/home/rjones/d/libguestfs
Diffstat (limited to 'src/guestfs-structs.h')
-rw-r--r--src/guestfs-structs.h129
1 files changed, 0 insertions, 129 deletions
diff --git a/src/guestfs-structs.h b/src/guestfs-structs.h
deleted file mode 100644
index 76ac8199..00000000
--- a/src/guestfs-structs.h
+++ /dev/null
@@ -1,129 +0,0 @@
-/* libguestfs generated file
- * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.
- * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
- *
- * Copyright (C) 2009 Red Hat Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-struct guestfs_int_bool {
- int32_t i;
- int32_t b;
-};
-
-struct guestfs_lvm_pv {
- char *pv_name;
- char pv_uuid[32]; /* this is NOT nul-terminated, be careful when printing */
- char *pv_fmt;
- uint64_t pv_size;
- uint64_t dev_size;
- uint64_t pv_free;
- uint64_t pv_used;
- char *pv_attr;
- int64_t pv_pe_count;
- int64_t pv_pe_alloc_count;
- char *pv_tags;
- uint64_t pe_start;
- int64_t pv_mda_count;
- uint64_t pv_mda_free;
-};
-
-struct guestfs_lvm_pv_list {
- uint32_t len;
- struct guestfs_lvm_pv *val;
-};
-
-struct guestfs_lvm_vg {
- char *vg_name;
- char vg_uuid[32]; /* this is NOT nul-terminated, be careful when printing */
- char *vg_fmt;
- char *vg_attr;
- uint64_t vg_size;
- uint64_t vg_free;
- char *vg_sysid;
- uint64_t vg_extent_size;
- int64_t vg_extent_count;
- int64_t vg_free_count;
- int64_t max_lv;
- int64_t max_pv;
- int64_t pv_count;
- int64_t lv_count;
- int64_t snap_count;
- int64_t vg_seqno;
- char *vg_tags;
- int64_t vg_mda_count;
- uint64_t vg_mda_free;
-};
-
-struct guestfs_lvm_vg_list {
- uint32_t len;
- struct guestfs_lvm_vg *val;
-};
-
-struct guestfs_lvm_lv {
- char *lv_name;
- char lv_uuid[32]; /* this is NOT nul-terminated, be careful when printing */
- char *lv_attr;
- int64_t lv_major;
- int64_t lv_minor;
- int64_t lv_kernel_major;
- int64_t lv_kernel_minor;
- uint64_t lv_size;
- int64_t seg_count;
- char *origin;
- float snap_percent; /* [0..100] or -1 */
- float copy_percent; /* [0..100] or -1 */
- char *move_pv;
- char *lv_tags;
- char *mirror_log;
- char *modules;
-};
-
-struct guestfs_lvm_lv_list {
- uint32_t len;
- struct guestfs_lvm_lv *val;
-};
-
-struct guestfs_stat {
- int64_t dev;
- int64_t ino;
- int64_t mode;
- int64_t nlink;
- int64_t uid;
- int64_t gid;
- int64_t rdev;
- int64_t size;
- int64_t blksize;
- int64_t blocks;
- int64_t atime;
- int64_t mtime;
- int64_t ctime;
-};
-
-struct guestfs_statvfs {
- int64_t bsize;
- int64_t frsize;
- int64_t blocks;
- int64_t bfree;
- int64_t bavail;
- int64_t files;
- int64_t ffree;
- int64_t favail;
- int64_t fsid;
- int64_t flag;
- int64_t namemax;
-};
-