1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 13:33:25 +01:00
TegraExplorer/source/storage/mountmanager.h
suchmememanyskill f1d433e69a Add partitioning
Also add sd mounting/unmounting
Also add vol+/- controls for sideways menus
2020-12-28 20:08:15 +01:00

17 lines
316 B
C

#pragma once
#include <utils/types.h>
#include <utils/list.h>
#include "../err.h"
enum {
MMC_CONN_None = 0,
MMC_CONN_EMMC,
MMC_CONN_EMUMMC
};
int connectMMC(u8 mmcType);
ErrCode_t mountMMCPart(const char *partition);
void SetKeySlots();
void unmountMMCPart();
link_t *GetCurGPT();
void disconnectMMC();