Files
tactility/components/nanobake/src/graphics.h
T
2023-12-28 13:18:05 +01:00

17 lines
196 B
C

#pragma once
#include "lvgl.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
lv_disp_t* _Nonnull disp;
lv_indev_t* _Nullable touch_indev;
} Lvgl;
#ifdef __cplusplus
}
#endif