/*1* Copyright (c) 2018 Rajko Stojadinovic2* Copyright (c) 2018 CTCaer3*4* This program is free software; you can redistribute it and/or modify it5* under the terms and conditions of the GNU General Public License,6* version 2, as published by the Free Software Foundation.7*8* This program is distributed in the hope it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for11* more details.12*13* You should have received a copy of the GNU General Public License14* along with this program. If not, see <http://www.gnu.org/licenses/>.15*/1617#ifndef _FE_EMMC_TOOLS_H_18#define _FE_EMMC_TOOLS_H_1920#include "gui.h"2122typedef enum23{24PART_BOOT = BIT(0),25PART_SYSTEM = BIT(1),26PART_USER = BIT(2),27PART_RAW = BIT(3),28PART_GP_ALL = BIT(7)29} emmcPartType_t;3031void dump_emmc_selected(emmcPartType_t dumpType, emmc_tool_gui_t *gui);32void restore_emmc_selected(emmcPartType_t restoreType, emmc_tool_gui_t *gui);3334#endif353637