blob: 616ad4aa5c11c15a069cfbe1f3b8fd2177e3f1ec [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Generated by garnet/public/rust/fuchsia-bootfs/scripts/bindgen.sh
// Manually modified to remove unused constants and structs.
/* automatically generated by rust-bindgen */
use {
byteorder::LittleEndian,
zerocopy::{byteorder::U32, FromBytes, Unaligned},
};
pub const ZBI_BOOTFS_PAGE_SIZE: u32 = 4096;
pub const ZBI_BOOTFS_MAGIC: u32 = 2775400441;
pub const ZBI_BOOTFS_MAX_NAME_LEN: u32 = 256;
#[repr(C)]
#[derive(Debug, Default, Copy, Clone, FromBytes, Unaligned)]
pub struct zbi_bootfs_header_t {
pub magic: U32<LittleEndian>,
pub dirsize: U32<LittleEndian>,
pub reserved0: U32<LittleEndian>,
pub reserved1: U32<LittleEndian>,
}
#[repr(C)]
#[derive(Debug, Default, FromBytes, Unaligned)]
pub struct zbi_bootfs_dirent_t {
pub name_len: U32<LittleEndian>,
pub data_len: U32<LittleEndian>,
pub data_off: U32<LittleEndian>,
}