2023-08-30 16:21:18 +08:00
|
|
|
/*
|
2024-09-03 11:16:08 +08:00
|
|
|
* Copyright (c) 2022-2024 ArtInChip Technology Co., Ltd.
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*
|
2023-08-30 16:21:18 +08:00
|
|
|
* Authors: Ning Fang <ning.fang@artinchip.com>
|
|
|
|
|
*/
|
|
|
|
|
|
2024-01-27 08:47:24 +08:00
|
|
|
#ifndef GIF_UI_H
|
|
|
|
|
#define GIF_UI_H
|
2023-08-30 16:21:18 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "lvgl.h"
|
|
|
|
|
#include "aic_ui.h"
|
|
|
|
|
|
2024-09-03 11:16:08 +08:00
|
|
|
void gif_ui_init(void);
|
|
|
|
|
|
|
|
|
|
int gif_check_finish(void);
|
2023-08-30 16:21:18 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
} /*extern "C"*/
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-01-27 08:47:24 +08:00
|
|
|
#endif // GIF_UI_H
|