/*1* Copyright (c) 2018-2019 CTCaer2*3* This program is free software; you can redistribute it and/or modify it4* under the terms and conditions of the GNU General Public License,5* version 2, as published by the Free Software Foundation.6*7* This program is distributed in the hope it will be useful, but WITHOUT8* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or9* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for10* more details.11*12* You should have received a copy of the GNU General Public License13* along with this program. If not, see <http://www.gnu.org/licenses/>.14*/1516#ifndef _GUI_OPTIONS_H_17#define _GUI_OPTIONS_H_1819#include <libs/lvgl/lvgl.h>2021void nyx_options_clear_ini_changes_made();22bool nyx_options_get_ini_changes_made();23void first_time_clock_edit(void *param);24lv_res_t create_win_nyx_options(lv_obj_t *parrent_btn);25void create_tab_options(lv_theme_t *th, lv_obj_t *parent);2627#endif282930