mirror of
https://gitlab.freedesktop.org/emersion/libdisplay-info.git
synced 2024-11-16 19:48:30 +01:00
c01982bdb1
This exposes a new di_info opaque struct from which high-level information will be able to be queried by the user. A new di_info_parse_edid function creates a di_info from an EDID blob. Signed-off-by: Simon Ser <contact@emersion.fr>
14 lines
168 B
C
14 lines
168 B
C
#ifndef INFO_H
|
|
#define INFO_H
|
|
|
|
/**
|
|
* Private header for the high-level API.
|
|
*/
|
|
|
|
#include <libdisplay-info/info.h>
|
|
|
|
struct di_info {
|
|
struct di_edid *edid;
|
|
};
|
|
|
|
#endif
|