2022-04-10 11:07:42 +02:00
|
|
|
#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;
|
2022-08-02 12:18:19 +02:00
|
|
|
|
|
|
|
char *failure_msg;
|
2022-04-10 11:07:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|