mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-19 01:45:06 +00:00
18 lines
211 B
C++
18 lines
211 B
C++
#include <Tactility/lvgl/Lvgl.h>
|
|
|
|
extern "C" {
|
|
|
|
bool tt_lvgl_is_started() {
|
|
return tt::lvgl::isStarted();
|
|
}
|
|
|
|
void tt_lvgl_start() {
|
|
tt::lvgl::start();
|
|
}
|
|
|
|
void tt_lvgl_stop() {
|
|
tt::lvgl::stop();
|
|
}
|
|
|
|
}
|