pub type DrmIoctlDescriptor = drm_ioctl_desc;Expand description
Descriptor type for DRM ioctls. Use the declare_drm_ioctls!{} macro to construct them.
Aliased Type§
#[repr(C)]pub struct DrmIoctlDescriptor {
pub cmd: u32,
pub flags: u32,
pub func: Option<unsafe extern "C" fn(*mut drm_device, *mut c_void, *mut drm_file) -> i32>,
pub name: *const u8,
}Fields§
§cmd: u32§flags: u32§func: Option<unsafe extern "C" fn(*mut drm_device, *mut c_void, *mut drm_file) -> i32>§name: *const u8