1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 21:43:40 +01:00
TegraExplorer/source/storage/mountmanager.h

17 lines
316 B
C
Raw Normal View History

2020-12-26 22:41:25 +00:00
#pragma once
#include <utils/types.h>
2020-12-27 22:33:23 +00:00
#include <utils/list.h>
2020-12-26 22:41:25 +00:00
#include "../err.h"
enum {
MMC_CONN_None = 0,
MMC_CONN_EMMC,
MMC_CONN_EMUMMC
};
int connectMMC(u8 mmcType);
ErrCode_t mountMMCPart(const char *partition);
2020-12-27 22:33:23 +00:00
void SetKeySlots();
void unmountMMCPart();
link_t *GetCurGPT();
void disconnectMMC();