//! File Object.use::device_object::PDEVICE_OBJECT;pubtypePFILE_OBJECT=*mutFILE_OBJECT;/// The `FILE_OBJECT` structure is used by the system to represent a file object.#[repr(C)]pubstructFILE_OBJECT{Type:u16,Size:u16,DeviceObject:PDEVICE_OBJECT,// ...}