diff options
Diffstat (limited to 'src/guestfs-structs.h')
-rw-r--r-- | src/guestfs-structs.h | 140 |
1 files changed, 0 insertions, 140 deletions
diff --git a/src/guestfs-structs.h b/src/guestfs-structs.h deleted file mode 100644 index 44f0ce0f..00000000 --- a/src/guestfs-structs.h +++ /dev/null @@ -1,140 +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; -}; - -struct guestfs_dirent { - int64_t ino; - char ftyp; - char *name; -}; - -struct guestfs_dirent_list { - uint32_t len; - struct guestfs_dirent *val; -}; - |