TegraExplorer/source/storage/mountmanager.h

17 lines
316 B
C
Raw Normal View History

2020-12-26 23:41:25 +01:00
#pragma once
#include <utils/types.h>
2020-12-27 23:33:23 +01:00
#include <utils/list.h>
2020-12-26 23:41:25 +01: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 23:33:23 +01:00
void SetKeySlots();
void unmountMMCPart();
link_t *GetCurGPT();
void disconnectMMC();