pub type DrmIoctlDescriptor = drm_ioctl_desc;
Expand description
Descriptor type for DRM ioctls. Use the declare_drm_ioctls!{}
macro to construct them.
Aliased Type§
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