summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Protocol/SimpleFileSystem.h
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-11 01:46:51 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-11 01:46:51 +0000
commitf754f721bf10508ca15c5c9243caa39c765662cf (patch)
treea30263d31dbc5cbe0d472c1ae870702d19111892 /MdePkg/Include/Protocol/SimpleFileSystem.h
parent41f2ff0b85f3118238aeac8dfda3a657340519a5 (diff)
downloadedk2-f754f721bf10508ca15c5c9243caa39c765662cf.tar.gz
edk2-f754f721bf10508ca15c5c9243caa39c765662cf.tar.bz2
edk2-f754f721bf10508ca15c5c9243caa39c765662cf.zip
update codes per MdePkg doxgen review comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8526 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/SimpleFileSystem.h')
-rw-r--r--MdePkg/Include/Protocol/SimpleFileSystem.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/MdePkg/Include/Protocol/SimpleFileSystem.h b/MdePkg/Include/Protocol/SimpleFileSystem.h
index 0733235180..6396e4df36 100644
--- a/MdePkg/Include/Protocol/SimpleFileSystem.h
+++ b/MdePkg/Include/Protocol/SimpleFileSystem.h
@@ -181,16 +181,17 @@ EFI_STATUS
);
/**
- Write data from or to the file.
+ Write data to a file.
@param This Protocol instance pointer.
- @param BufferSize On input: size of buffer. On output: amount of data in buffer.
- @param Buffer The buffer in which to write data.
+ @param BufferSize On input size of buffer, on output amount of data in buffer.
+ @param Buffer The buffer in which data to write.
@retval EFI_SUCCESS Data was written.
@retval EFI_UNSUPPORT Writes to Open directory are not supported
@retval EFI_NO_MEDIA The device has no media
@retval EFI_DEVICE_ERROR The device reported an error
+ @retval EFI_DEVICE_ERROR An attempt was made to write to a deleted file
@retval EFI_VOLUME_CORRUPTED The file system structures are corrupted
@retval EFI_WRITE_PROTECTED The device is write protected
@retval EFI_ACCESS_DENIED The file was open for read only
@@ -209,7 +210,7 @@ EFI_STATUS
Set a files current position
@param This Protocol instance pointer.
- @param Position Byte position, from the start of the file
+ @param Position Byte position from the start of the file
@retval EFI_SUCCESS Data was written.
@retval EFI_UNSUPPORTED Seek request for non-zero is not valid on open.
@@ -226,7 +227,7 @@ EFI_STATUS
Get a file's current position
@param This Protocol instance pointer.
- @param Position Byte position, from the start of the file
+ @param Position Byte position from the start of the file
@retval EFI_SUCCESS Data was written.
@retval EFI_UNSUPPORTED Seek request for non-zero is not valid on open.
@@ -244,7 +245,7 @@ EFI_STATUS
@param This Protocol instance pointer.
@param InformationType Type of info to return in Buffer
- @param BufferSize On input: size of buffer. On output: amount of data in buffer.
+ @param BufferSize On input size of buffer, on output amount of data in buffer.
@param Buffer The buffer to return data.
@retval EFI_SUCCESS Data was returned.