mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
17 lines
376 B
C
17 lines
376 B
C
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
|
|
#include "lvgl.h"
|
|
#else
|
|
#include "../../lvgl.h"
|
|
#endif
|
|
|
|
#ifdef PIKASCRIPT
|
|
|
|
#include "pika_lvgl_point_t.h"
|
|
|
|
void pika_lvgl_point_t___init__(PikaObj* self) {
|
|
lv_point_t lv_point = {0};
|
|
args_setStruct(self->list, "lv_point_struct", lv_point);
|
|
obj_setPtr(self, "lv_point", args_getStruct(self->list, "lv_point_struct"));
|
|
}
|
|
#endif
|