mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
27 lines
333 B
C
27 lines
333 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2024 ArtInChip Technology Co., Ltd.
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*
|
||
|
|
* Authors: ArtInChip
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
#ifndef _UI_INIT_H
|
||
|
|
#define _UI_INIT_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include "lvgl.h"
|
||
|
|
|
||
|
|
void ui_init(void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
} /*extern "C"*/
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif // _UI_INIT_H
|