fixing errors found in code review.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9450 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jcarsey
2009-11-19 19:53:58 +00:00
parent 125c2cf4f1
commit ef34de257b
4 changed files with 35 additions and 9 deletions

View File

@ -26,12 +26,12 @@
// replaced EFI_LIST_ENTRY with LIST_ENTRY for simplicity.
// they are identical outside of the name.
typedef struct {
LIST_ENTRY Link; /// Linked list members
EFI_STATUS Status; /// Status of opening the file. Valid only if Handle != NULL.
CONST CHAR16 *FullName; /// Fully qualified filename.
CONST CHAR16 *FileName; /// name of this file.
EFI_FILE_HANDLE Handle; /// Handle for interacting with the opened file or NULL if closed.
EFI_FILE_INFO *Info; /// Pointer to the FileInfo struct for this file or NULL.
LIST_ENTRY Link; ///< Linked list members
EFI_STATUS Status; ///< Status of opening the file. Valid only if Handle != NULL.
CONST CHAR16 *FullName; ///< Fully qualified filename.
CONST CHAR16 *FileName; ///< name of this file.
EFI_FILE_HANDLE Handle; ///< Handle for interacting with the opened file or NULL if closed.
EFI_FILE_INFO *Info; ///< Pointer to the FileInfo struct for this file or NULL.
} EFI_SHELL_FILE_INFO;
/**
Returns whether any script files are currently being processed.