pf2: drv::IsInserted

This commit is contained in:
Michael Scire
2021-02-02 22:53:23 -08:00
parent 8719e6da02
commit a2f611edb7
6 changed files with 84 additions and 7 deletions

View File

@@ -23,6 +23,14 @@ namespace ams::prfile2::pdm {
namespace part {
pdm::Error CheckDataEraseRequest(HandleType part_handle, bool *out);
pdm::Error CheckMediaInsert(HandleType part_handle, bool *out);
}
namespace disk {
pdm::Error CheckDataEraseRequest(HandleType disk_handle, bool *out);
pdm::Error CheckMediaInsert(HandleType disk_handle, bool *out);
}

View File

@@ -26,4 +26,6 @@ namespace ams::prfile2::drv {
pf::Error Initialize(Volume *volume);
bool IsInserted(Volume *volume);
}