Function getEdid [src]
Returns policy information and potentially a replacement EDID for the specified video output device.
Prototype
pub fn getEdid( self: *const Override, handle: Handle, attributes: *Attributes, edid_size: *usize, edid: *?[*]u8, ) Status
Parameters
self: *const Override
handle: Handle
attributes: *Attributes
edid_size: *usize
edid: *?[*]u8
Source
pub fn getEdid(
self: *const Override,
handle: Handle,
attributes: *Attributes,
edid_size: *usize,
edid: *?[*]u8,
) Status {
return self._get_edid(self, handle, attributes, edid_size, edid);
}