mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Merge pull request #100 from O1L/master
This commit is contained in:
parent
5c563d04c7
commit
fb1b57720c
7 changed files with 308 additions and 7 deletions
|
|
@ -56,6 +56,21 @@ enum FsDirentType
|
|||
CELL_FS_TYPE_SYMLINK = 3,
|
||||
};
|
||||
|
||||
enum CellFsRingBufferCopy
|
||||
{
|
||||
CELL_FS_ST_COPY = 0,
|
||||
CELL_FS_ST_COPYLESS = 1,
|
||||
};
|
||||
|
||||
enum cellFsStStatus
|
||||
{
|
||||
CELL_FS_ST_INITIALIZED = 0x0001,
|
||||
CELL_FS_ST_NOT_INITIALIZED = 0x0002,
|
||||
CELL_FS_ST_STOP = 0x0100,
|
||||
CELL_FS_ST_PROGRESS = 0x0200,
|
||||
};
|
||||
|
||||
|
||||
#pragma pack(4)
|
||||
|
||||
struct CellFsStat
|
||||
|
|
@ -92,4 +107,18 @@ struct CellFsAio
|
|||
be_t<u32> buf_addr;
|
||||
be_t<u64> size;
|
||||
be_t<u64> user_data;
|
||||
};
|
||||
};
|
||||
|
||||
struct CellFsDirectoryEntry
|
||||
{
|
||||
CellFsStat attribute;
|
||||
CellFsDirent entry_name;
|
||||
};
|
||||
|
||||
struct CellFsRingBuffer
|
||||
{
|
||||
be_t<u64> ringbuf_size;
|
||||
be_t<u64> block_size;
|
||||
be_t<u64> transfer_rate;
|
||||
be_t<u32> copy;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue