MiscNumberOfInstallableLanguagesData.c 1002 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /** @file
  2. Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. Module Name:
  5. MiscNumberOfInstallableLanguagesData.c
  6. Abstract:
  7. Static data of the Number of installable languages information.
  8. Number of installable languages information is Misc. subclass type 11 and SMBIOS type 13.
  9. **/
  10. #include "CommonHeader.h"
  11. #include "MiscSubclassDriver.h"
  12. //
  13. // Static (possibly build generated) Bios Vendor data.
  14. //
  15. MISC_SMBIOS_TABLE_DATA(EFI_MISC_NUMBER_OF_INSTALLABLE_LANGUAGES_DATA, NumberOfInstallableLanguages)
  16. = {
  17. 1, // NumberOfInstallableLanguages
  18. { // LanguageFlags
  19. 1, // AbbreviatedLanguageFormat
  20. 0 // Reserved
  21. },
  22. STRING_TOKEN(STR_MISC_SYSTEM_LANGUAGE_EN_US) // CurrentLanguageNumber
  23. };