mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +01:00
21 lines
261 B
C++
21 lines
261 B
C++
|
#pragma once
|
||
|
|
||
|
#include <boost/filesystem/path.hpp>
|
||
|
|
||
|
namespace HLE {
|
||
|
|
||
|
class FakeFS;
|
||
|
using FSContext = FakeFS;
|
||
|
|
||
|
inline uint64_t GetId0(FSContext&) {
|
||
|
// TODO
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
inline uint64_t GetId1(FSContext&) {
|
||
|
// TODO
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
} // namespace HLE
|