libdisplay-info/include/info.h
Simon Ser 7834b6ba22 info: introduce di_logger
This can be used by parsers (EDID, CTA, DisplayID, etc) to report
errors.

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-08-04 08:40:36 +02:00

16 lines
189 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;
char *failure_msg;
};
#endif