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
2020-12-26 23:41:25 +01:00

13 lines
226 B
C

#pragma once
#include <utils/types.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();