limine_protocol/responses/
bootloader_info.rs

1use core::ffi::CStr;
2
3#[repr(C)]
4#[derive(Debug)]
5/// Response to [`InfoRequest`]
6pub struct BootloaderInfoResponse<'a> {
7    /// The response revision number
8    pub revision: u64,
9    /// A null-terminated string of the bootloader's name
10    pub name: &'a CStr,
11    /// A null-terminated string of the bootloader's version
12    pub version: &'a CStr,
13}