Changes

53 bytes removed ,  12:41, 26 May 2016
Line 310: Line 310:  
!Prototype
 
!Prototype
 
!Description
 
!Description
βˆ’
!Return Values -or- [[#Defines|Error Codes]]
+
!Return Values: 0=FS_STATUS_OK -or- <0=[[#Defines| Return Codes]]
 
!Notes
 
!Notes
 
|-
 
|-
Line 316: Line 316:  
|<code>FSStatus FSOpenFile FSClient *client, FSCmdBlock *block, const char *path, const char *mode, FSFileHandle *fileHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSOpenFile FSClient *client, FSCmdBlock *block, const char *path, const char *mode, FSFileHandle *fileHandle, FSRetFlag errHandling );
 
|Open file stream
 
|Open file stream
βˆ’
|00, 01, 03, 04, 06, 07, 08, 09, 10, 12, 13, 15, 17, 18,19
+
| -1 -3 -4 -6 -7 -8 -9 -10 -12 -13 -15 -17 -18 -19
 
|  
 
|  
 
|-
 
|-
Line 322: Line 322:  
|<code>FSStatus FSCloseFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle FSRetFlag errHandling );
 
|<code>FSStatus FSCloseFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle FSRetFlag errHandling );
 
|Close file stream.
 
|Close file stream.
βˆ’
|00, 01, 17
+
| -1 -17
 
|
 
|
 
|-
 
|-
Line 328: Line 328:  
|<code>FSStatus FSReadFile FSClient *client, FSCmdBlock *block, void *dest, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlagflag, FSRetFlag errHandling
 
|<code>FSStatus FSReadFile FSClient *client, FSCmdBlock *block, void *dest, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlagflag, FSRetFlag errHandling
 
|Read data from an open file.
 
|Read data from an open file.
βˆ’
|Non-negative value ( >= 0 ) = Number of elements read, 01, 09, 15, 17, 18  
+
|Non-negative value ( >= 0 ) = Number of elements read or -1 -9 -15 -17 -18  
 
|
 
|
 
|-
 
|-
Line 334: Line 334:  
|<code>FSStatus FSWriteFile( FSClient *client, FSCmdBlock *block, const void *source, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlag flag, FSRetFlag errHandling );  
 
|<code>FSStatus FSWriteFile( FSClient *client, FSCmdBlock *block, const void *source, FSSize size, FSCount count, FSFileHandle fileHandle, FSFlag flag, FSRetFlag errHandling );  
 
|Write data to file
 
|Write data to file
βˆ’
|Non-negative value ( >= 0 ) = Number of elements write, 01, 09, 11, 12, 13m 14, 15, 17, 18  
+
|Non-negative value ( >= 0 ) = Number of elements write or -1 -9 -11 -12 -13 -14 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 340: Line 340:  
|<code>FSStatus FSAppendFile( FSClient *client, FSCmdBlock *block, FSSize size, FSCount count, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSAppendFile( FSClient *client, FSCmdBlock *block, FSSize size, FSCount count, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|Append file.
 
|Append file.
βˆ’
|Non-negative value ( >= 0 ) = Newly appended size (newly added preallocation area [Byte] divided by size), 01, 09, 11, 12, 13, 15, 17, 18, 19
+
|Non-negative value ( >= 0 ) = Newly appended size (newly added preallocation area [Byte] divided by size) or -1 -9 -11 -12 -13 -15 -17 -18 -19
 
|
 
|
 
|-
 
|-
Line 346: Line 346:  
|<code>FSStatus FSTruncateFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSTruncateFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|Truncate file at file position
 
|Truncate file at file position
βˆ’
|00, 01, 09, 12, 13, 14, 15, 17,18  
+
| -1 -9 -12 -13 -14 -15 -17 -18  
 
|
 
|
 
|-
 
|-
Line 352: Line 352:  
|<code>FSStatus FSFlushFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSFlushFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|Flush file.
 
|Flush file.
βˆ’
|00, 01, 09, 15, 17,18
+
| -1 -9 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 358: Line 358:  
|<code>FSStatus FSGetPosFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSFilePosition *returnedFpos, FSRetFlag errHandling );
 
|<code>FSStatus FSGetPosFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSFilePosition *returnedFpos, FSRetFlag errHandling );
 
|Get position of specified file stream.
 
|Get position of specified file stream.
βˆ’
|00, 01, 15, 17, 18
+
| -1 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 364: Line 364:  
|<code>FSStatus FSSetPosFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSFilePosition fpos, FSRetFlag errHandling );
 
|<code>FSStatus FSSetPosFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSFilePosition fpos, FSRetFlag errHandling );
 
|Set position of specified file stream
 
|Set position of specified file stream
βˆ’
|00, 01, 15, 17, 18
+
| -1 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 370: Line 370:  
|<code>FSStatus FSGetStatFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSStat *returnedStat, FSRetFlag errHandling );
 
|<code>FSStatus FSGetStatFile( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSStat *returnedStat, FSRetFlag errHandling );
 
|Get stat information of specified file.
 
|Get stat information of specified file.
βˆ’
|00, 01, 15, 17, 18
+
| -1 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 376: Line 376:  
|<code>FSStatus FSIsEof( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSIsEof( FSClient *client, FSCmdBlock *block, FSFileHandle fileHandle, FSRetFlag errHandling );
 
|Determine if the current file position of specified file stream is at the end-of-file(EOF).
 
|Determine if the current file position of specified file stream is at the end-of-file(EOF).
βˆ’
|00, 01, 02, 15, 17, 18
+
| -1 -2 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 382: Line 382:  
|<code>FSStatus FSOpenDir( FSClient *client, FSCmdBlock *block, const char *path, FSDirHandle *dirHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSOpenDir( FSClient *client, FSCmdBlock *block, const char *path, FSDirHandle *dirHandle, FSRetFlag errHandling );
 
|Open directory stream
 
|Open directory stream
βˆ’
|00, 01, 03, 06, 08, 10, 15, 17, 18
+
| -1 -3 -6 -8 -10 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 388: Line 388:  
|<code>FSStatus FSCloseDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSCloseDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSRetFlag errHandling );
 
|Close directory stream.
 
|Close directory stream.
βˆ’
|00, 01, 17
+
| -1 -17
 
|
 
|
 
|-
 
|-
Line 394: Line 394:  
|<code>FSStatus FSReadDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSDirEntry *returnedDirEntry, FSRetFlag errHandling );
 
|<code>FSStatus FSReadDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSDirEntry *returnedDirEntry, FSRetFlag errHandling );
 
|Read next directory entry.
 
|Read next directory entry.
βˆ’
|00, 01, 02, 15,17, 18
+
| -1 -2 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 400: Line 400:  
|<code>FSStatus FSRewindDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSRetFlag errHandling );
 
|<code>FSStatus FSRewindDir( FSClient *client, FSCmdBlock *block, FSDirHandle dirHandle, FSRetFlag errHandling );
 
|Set position of specified directory stream to the head.
 
|Set position of specified directory stream to the head.
βˆ’
|00, 01, 02, 15,17, 18
+
| -1 -2 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 406: Line 406:  
|<code>FSStatus FSGetCwd( FSClient *client, FSCmdBlock *block, char *returnedPath, u32 bytes, FSRetFlag errHandling );
 
|<code>FSStatus FSGetCwd( FSClient *client, FSCmdBlock *block, char *returnedPath, u32 bytes, FSRetFlag errHandling );
 
|Get current work directory.
 
|Get current work directory.
βˆ’
|00, 01
+
| -1
 
|
 
|
 
|-
 
|-
Line 412: Line 412:  
|<code>FSStatus FSMakeDir( FSClient *client, FSCmdBlock *block, const char*path, FSRetFlag errHandling );
 
|<code>FSStatus FSMakeDir( FSClient *client, FSCmdBlock *block, const char*path, FSRetFlag errHandling );
 
|Create directory.
 
|Create directory.
βˆ’
|00, 01, 05, 06, 08, 10, 12, 13, 14, 17, 18, 19   
+
| -1 -5 -6 -8 -10 -12 -13 -14 -17 -18 -19   
 
|
 
|
 
|-
 
|-
Line 418: Line 418:  
|<code>FSStatus FSRemove( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 
|<code>FSStatus FSRemove( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 
|Remove file or directory.
 
|Remove file or directory.
βˆ’
|00, 01, 04, 06, 08, 09, 10, 12,13, 14, 15, 17, 18, 19  
+
| -1 -4 -6 -8 -9 -10 -12 -13 -14 -15 -17 -18 -19  
 
|
 
|
 
|-
 
|-
Line 424: Line 424:  
|<code>FSStatus FSRename( FSClient *client, FSCmdBlock *block, const char *oldpath, const char *newpath, FSRetFlag errHandling );
 
|<code>FSStatus FSRename( FSClient *client, FSCmdBlock *block, const char *oldpath, const char *newpath, FSRetFlag errHandling );
 
|Rename file or directory.
 
|Rename file or directory.
βˆ’
|00, 01, 04,05 06, 08, 10, 12, 13, 14, 15,17,18,19
+
| -1 -4 -5 -6 -8 -10 -12 -13 -14 -15 -17 -18 -19
 
|
 
|
 
|-
 
|-
Line 430: Line 430:  
|<code>FSStatus FSFlushQuota( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 
|<code>FSStatus FSFlushQuota( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 
|Flush journaling data of quota.
 
|Flush journaling data of quota.
βˆ’
|00, 01, 06, 14, 15, 17,18,19
+
| -1 -6 -14 -15 -17 -18 -19
 
|
 
|
 
|-
 
|-
Line 436: Line 436:  
|<code>FSStatus FSRollbackQuota( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 
|<code>FSStatus FSRollbackQuota( FSClient *client, FSCmdBlock *block, const char *path, FSRetFlag errHandling );
 
|Rollback journaling data of quota.
 
|Rollback journaling data of quota.
βˆ’
|00, 01, 04, 06, 14, 15, 17, 18
+
| -1 -4 -6 -14 -15 -17 -18
 
|
 
|
 
|-
 
|-
Line 442: Line 442:  
|<code>FSStatus FSGetStat( FSClient *client, FSCmdBlock *block, const char *path, FSStat *returnedStat, FSRetFlag errHandling );
 
|<code>FSStatus FSGetStat( FSClient *client, FSCmdBlock *block, const char *path, FSStat *returnedStat, FSRetFlag errHandling );
 
|Get stat information of specified entry.
 
|Get stat information of specified entry.
βˆ’
|00, 01, 06, 10, 15, 16, 18, 19
+
| -1 -6 -10 -15 -16 -18 -19
 
|
 
|
 
|-
 
|-
Line 448: Line 448:  
|<code>FSStatus FSGetFreeSpaceSize( FSClient *client, FSCmdBlock *block, const char *path, FSFreeSpaceSize *returnedFreeSize, FSRetFlag errHandling );
 
|<code>FSStatus FSGetFreeSpaceSize( FSClient *client, FSCmdBlock *block, const char *path, FSFreeSpaceSize *returnedFreeSize, FSRetFlag errHandling );
 
|Get free space size in quota.
 
|Get free space size in quota.
βˆ’
|00, 01, 06, 10, 15, 17,18
+
| -1 -6 -10 -15 -17 -18
 
|
 
|
 
|-
 
|-
53

edits