mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
17 lines
198 B
C
17 lines
198 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;
|
|
} NbLvgl;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|