/** ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** * Copyright 2020 Ben Vanik. All rights reserved. * * Released under the BSD license - see LICENSE in the root for more details. * ****************************************************************************** */ #ifndef XENIA_KERNEL_XAM_XAM_CONTENT_DEVICE_H_ #define XENIA_KERNEL_XAM_XAM_CONTENT_DEVICE_H_ #include "xenia/xbox.h" namespace xe { namespace kernel { namespace xam { enum class DeviceType : uint32_t { HDD = 1, ODD = 4, }; enum class DummyDeviceId : uint32_t { HDD = 1, ODD = 2, }; struct DummyDeviceInfo { DummyDeviceId device_id; DeviceType device_type; uint64_t total_bytes; uint64_t free_bytes; const std::u16string_view name; }; const DummyDeviceInfo* GetDummyDeviceInfo(uint32_t device_id); std::vector ListStorageDevices( bool include_readonly = false); } // namespace xam } // namespace kernel } // namespace xe #endif // XENIA_KERNEL_XAM_XAM_CONTENT_DEVICE_H_