diff options
author | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-11 08:35:53 +0000 |
---|---|---|
committer | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-11 08:35:53 +0000 |
commit | 3384a9bcb45cd25380df36f785de8b275814ae80 (patch) | |
tree | 42867116045413c8c76dbd7d48ba400776d39a64 /IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h | |
parent | 6b27e0f05d4a6c350e5cc0d84fc839c5ef22f63c (diff) | |
download | edk2-platforms-3384a9bcb45cd25380df36f785de8b275814ae80.tar.xz |
Fix BDS limitation of two "EFI DVD/CDROM" options appear after plug two CD-ROM.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8530 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h')
-rw-r--r-- | IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h b/IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h index 208b975ade..a850743643 100644 --- a/IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h +++ b/IntelFrameworkModulePkg/Library/GenericBdsLib/InternalBdsLib.h @@ -112,4 +112,21 @@ BdsLibGetImageHeader ( OUT EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION Hdr
);
+/**
+ Check whether the descriptionis is conflict with the description reserved for
+ auto-created boot options.
+
+ @param Description The Description in a boot option
+
+ @retval TRUE The description is conflict with the description reserved for
+ auto-created boot options.
+ @retval FALSE The description is not conflict with the description reserved.
+
+**/
+BOOLEAN
+EFIAPI
+CheckDescritptionConflict (
+ IN CHAR16 *Description
+ );
+
#endif // _BDS_LIB_H_
|