mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
16 lines
431 B
C
16 lines
431 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __pika_lvgl_table__H
|
|
#define __pika_lvgl_table__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_pika_lvgl_table(Args *args);
|
|
|
|
void pika_lvgl_table___init__(PikaObj *self, PikaObj* parent);
|
|
void pika_lvgl_table_set_cell_value(PikaObj *self, int row, int col, char* txt);
|
|
|
|
#endif
|