FS: fix documentation of service functions
This commit is contained in:
parent
71fac7bd72
commit
36169144b5
@ -13,6 +13,7 @@ namespace FS {
|
|||||||
class FS_USER final : public ServiceFramework<FS_USER> {
|
class FS_USER final : public ServiceFramework<FS_USER> {
|
||||||
public:
|
public:
|
||||||
FS_USER();
|
FS_USER();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void Initialize(Kernel::HLERequestContext& ctx);
|
void Initialize(Kernel::HLERequestContext& ctx);
|
||||||
|
|
||||||
@ -58,6 +59,7 @@ private:
|
|||||||
/*
|
/*
|
||||||
* FS_User::DeleteFile service function
|
* FS_User::DeleteFile service function
|
||||||
* Inputs:
|
* Inputs:
|
||||||
|
* 1 : Transaction
|
||||||
* 2 : Archive handle lower word
|
* 2 : Archive handle lower word
|
||||||
* 3 : Archive handle upper word
|
* 3 : Archive handle upper word
|
||||||
* 4 : File path string type
|
* 4 : File path string type
|
||||||
@ -71,6 +73,7 @@ private:
|
|||||||
/*
|
/*
|
||||||
* FS_User::RenameFile service function
|
* FS_User::RenameFile service function
|
||||||
* Inputs:
|
* Inputs:
|
||||||
|
* 1 : Transaction
|
||||||
* 2 : Source archive handle lower word
|
* 2 : Source archive handle lower word
|
||||||
* 3 : Source archive handle upper word
|
* 3 : Source archive handle upper word
|
||||||
* 4 : Source file path type
|
* 4 : Source file path type
|
||||||
@ -89,6 +92,7 @@ private:
|
|||||||
/*
|
/*
|
||||||
* FS_User::DeleteDirectory service function
|
* FS_User::DeleteDirectory service function
|
||||||
* Inputs:
|
* Inputs:
|
||||||
|
* 1 : Transaction
|
||||||
* 2 : Archive handle lower word
|
* 2 : Archive handle lower word
|
||||||
* 3 : Archive handle upper word
|
* 3 : Archive handle upper word
|
||||||
* 4 : Directory path string type
|
* 4 : Directory path string type
|
||||||
@ -118,6 +122,7 @@ private:
|
|||||||
* FS_User::CreateFile service function
|
* FS_User::CreateFile service function
|
||||||
* Inputs:
|
* Inputs:
|
||||||
* 0 : Command header 0x08080202
|
* 0 : Command header 0x08080202
|
||||||
|
* 1 : Transaction
|
||||||
* 2 : Archive handle lower word
|
* 2 : Archive handle lower word
|
||||||
* 3 : Archive handle upper word
|
* 3 : Archive handle upper word
|
||||||
* 4 : File path string type
|
* 4 : File path string type
|
||||||
@ -133,10 +138,12 @@ private:
|
|||||||
/*
|
/*
|
||||||
* FS_User::CreateDirectory service function
|
* FS_User::CreateDirectory service function
|
||||||
* Inputs:
|
* Inputs:
|
||||||
|
* 1 : Transaction
|
||||||
* 2 : Archive handle lower word
|
* 2 : Archive handle lower word
|
||||||
* 3 : Archive handle upper word
|
* 3 : Archive handle upper word
|
||||||
* 4 : Directory path string type
|
* 4 : Directory path string type
|
||||||
* 5 : Directory path string size
|
* 5 : Directory path string size
|
||||||
|
* 6 : Directory attributes
|
||||||
* 8 : Directory path string data
|
* 8 : Directory path string data
|
||||||
* Outputs:
|
* Outputs:
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
@ -146,6 +153,7 @@ private:
|
|||||||
/*
|
/*
|
||||||
* FS_User::RenameDirectory service function
|
* FS_User::RenameDirectory service function
|
||||||
* Inputs:
|
* Inputs:
|
||||||
|
* 1 : Transaction
|
||||||
* 2 : Source archive handle lower word
|
* 2 : Source archive handle lower word
|
||||||
* 3 : Source archive handle upper word
|
* 3 : Source archive handle upper word
|
||||||
* 4 : Source dir path type
|
* 4 : Source dir path type
|
||||||
@ -198,7 +206,7 @@ private:
|
|||||||
* 1 : Archive handle low word
|
* 1 : Archive handle low word
|
||||||
* 2 : Archive handle high word
|
* 2 : Archive handle high word
|
||||||
* Outputs:
|
* Outputs:
|
||||||
* 0 : ??? TODO(yuriks): Verify return header
|
* 0 : 0x080E0040
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
*/
|
*/
|
||||||
void CloseArchive(Kernel::HLERequestContext& ctx);
|
void CloseArchive(Kernel::HLERequestContext& ctx);
|
||||||
@ -214,7 +222,7 @@ private:
|
|||||||
/**
|
/**
|
||||||
* FS_User::IsSdmcWriteable service function
|
* FS_User::IsSdmcWriteable service function
|
||||||
* Outputs:
|
* Outputs:
|
||||||
* 0 : Command header 0x08180000
|
* 0 : Command header 0x08180080
|
||||||
* 1 : Result of function, 0 on success, otherwise error code
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
* 2 : Whether the Sdmc is currently writeable
|
* 2 : Whether the Sdmc is currently writeable
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user