small format fixes
This commit is contained in:
parent
e35efb55a2
commit
7a3e4637f4
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
namespace Core::FileSys {
|
namespace Core::FileSys {
|
||||||
|
|
||||||
constexpr int RESERVED_HANDLES = 3; //first 3 handles are stdin,stdout,stderr
|
constexpr int RESERVED_HANDLES = 3; // First 3 handles are stdin,stdout,stderr
|
||||||
|
|
||||||
void MntPoints::mount(const std::string& host_folder, const std::string& guest_folder) {
|
void MntPoints::mount(const std::string& host_folder, const std::string& guest_folder) {
|
||||||
std::scoped_lock lock{m_mutex};
|
std::scoped_lock lock{m_mutex};
|
||||||
|
|
|
@ -7,13 +7,14 @@ class SymbolsResolver;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Core::Libraries::LibKernel {
|
namespace Core::Libraries::LibKernel {
|
||||||
|
|
||||||
constexpr int SCE_MAX_PATH = 255;
|
constexpr int SCE_MAX_PATH = 255;
|
||||||
|
|
||||||
struct SceKernelDirent {
|
struct SceKernelDirent {
|
||||||
u32 d_fileno; /* file number of entry */
|
u32 d_fileno; /* file number of entry */
|
||||||
u16 d_reclen; /* length of this record */
|
u16 d_reclen; /* length of this record */
|
||||||
u08 d_type; /* file type, see below */
|
u08 d_type; /* file type, see below */
|
||||||
u08 d_namlen; /* length of string in d_name */
|
u08 d_namlen; /* length of string in d_name */
|
||||||
char d_name[SCE_MAX_PATH + 1]; /* name must be no longer than this */
|
char d_name[SCE_MAX_PATH + 1]; /* name must be no longer than this */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue