forked from acidanthera/OpenCorePkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OcUnicodeCollationEngLib: Initial import
- Loading branch information
1 parent
13b9932
commit ef4535e
Showing
6 changed files
with
757 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** @file | ||
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR> | ||
This program and the accompanying materials | ||
are licensed and made available under the terms and conditions of the BSD License | ||
which accompanies this distribution. The full text of the license may be found at | ||
http://opensource.org/licenses/bsd-license.php | ||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. | ||
**/ | ||
|
||
#ifndef OC_UNICODE_COLLATION_ENG_LIB_H | ||
#define OC_UNICODE_COLLATION_ENG_LIB_H | ||
|
||
#include <Protocol/UnicodeCollation.h> | ||
|
||
/** | ||
The user Entry Point for English module. | ||
This function initializes unicode character mapping and then installs Unicode | ||
Collation & Unicode Collation 2 Protocols based on the feature flags. | ||
@param[in] Reinstall Replace any installed protocol. | ||
@returns Installed protocol. | ||
@retval NULL There was an error installing the protocol. | ||
**/ | ||
EFI_UNICODE_COLLATION_PROTOCOL * | ||
OcUnicodeCollationEngInstallProtocol ( | ||
IN BOOLEAN Reinstall | ||
); | ||
|
||
#endif // OC_UNICODE_COLLATION_ENG_LIB_H |
Oops, something went wrong.