mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 13:11:54 +00:00
f1d433e69a
Also add sd mounting/unmounting Also add vol+/- controls for sideways menus
17 lines
No EOL
316 B
C
17 lines
No EOL
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(); |