blob: 0b4b66bde7e2ff4bdf780aca51f47270640ad43d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
with Interfaces.C;
with HW.GFX.EDID;
package GMA is
function read_edid
(raw_edid : out HW.GFX.EDID.Raw_EDID_Data;
Port : in Interfaces.C.int)
return Interfaces.C.int
with
Export, Convention => C, External_Name => "gma_read_edid";
end GMA;
|