22 lines
328 B
C
22 lines
328 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "esp_err.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ui_media_player(void (*fn)(void));
|
|
lv_obj_t* get_player_page();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|