diff options
Diffstat (limited to 'EmbeddedPkg/Include/Library/EfiFileLib.h')
-rw-r--r-- | EmbeddedPkg/Include/Library/EfiFileLib.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/EmbeddedPkg/Include/Library/EfiFileLib.h b/EmbeddedPkg/Include/Library/EfiFileLib.h index 9ec5246358..033375cea0 100644 --- a/EmbeddedPkg/Include/Library/EfiFileLib.h +++ b/EmbeddedPkg/Include/Library/EfiFileLib.h @@ -118,12 +118,12 @@ typedef enum { /**
Open a device named by PathName. The PathName includes a device name and
- path seperated by a :. See file header for more details on the PathName
+ path separated by a :. See file header for more details on the PathName
syntax. There is no checking to prevent a file from being opened more than
one type.
SectionType is only used to open an FV. Each file in an FV contains multiple
- secitons and only the SectionType section is opened.
+ sections and only the SectionType section is opened.
For any file that is opened with EfiOpen() must be closed with EfiClose().
@@ -199,7 +199,7 @@ EfiTell ( /**
- Seek to the Offset locaiton in the file. LoadFile and FV device types do
+ Seek to the Offset location in the file. LoadFile and FV device types do
not support EfiSeek(). It is not possible to grow the file size using
EfiSeek().
@@ -214,7 +214,7 @@ EfiTell ( @return EFI_INVALID_PARAMETER Stream is not an Open File
- @return EFI_UNSUPPORTED LoadFile and FV doe not support Seek
+ @return EFI_UNSUPPORTED LoadFile and FV does not support Seek
@return EFI_NOT_FOUND Seek past the end of the file.
@return EFI_SUCCESS Steam closed
@@ -228,7 +228,7 @@ EfiSeek ( /**
- Read BufferSize bytes from the current locaiton in the file. For load file
+ Read BufferSize bytes from the current location in the file. For load file
and FV case you must read the entire file.
@param Stream Open File Handle
@@ -255,7 +255,7 @@ EfiRead ( Read the entire file into a buffer. This routine allocates the buffer and
returns it to the user full of the read data.
- This is very useful for load flie where it's hard to know how big the buffer
+ This is very useful for load file where it's hard to know how big the buffer
must be.
@param Stream Open File Handle
@@ -316,7 +316,7 @@ EfiGetDeviceCounts ( /**
- Set the Curent Working Directory (CWD). If a call is made to EfiOpen () and
+ Set the Current Working Directory (CWD). If a call is made to EfiOpen () and
the path does not contain a device name, The CWD is prepended to the path.
@param Cwd Current Working Directory to set
@@ -332,7 +332,7 @@ EfiSetCwd ( );
/**
- Set the Curent Working Directory (CWD). If a call is made to EfiOpen () and
+ Set the Current Working Directory (CWD). If a call is made to EfiOpen () and
the path does not contain a device name, The CWD is prepended to the path.
@param Cwd Current Working Directory
|