1 /** @file
2   This file provides Smbios Type13 Data
3 
4   Based on files under Nt32Pkg/MiscSubClassPlatformDxe/
5 
6   Copyright (c) 2021, NUVIA Inc. All rights reserved.<BR>
7   Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
8   Copyright (c) 2015, Hisilicon Limited. All rights reserved.<BR>
9   Copyright (c) 2015, Linaro Limited. All rights reserved.<BR>
10   SPDX-License-Identifier: BSD-2-Clause-Patent
11 
12 **/
13 
14 #include "SmbiosMisc.h"
15 
16 //
17 // Static (possibly build generated) Bios Vendor data.
18 //
19 
20 SMBIOS_MISC_TABLE_DATA(SMBIOS_TABLE_TYPE13, MiscNumberOfInstallableLanguages) =
21 {
22   {                                                     // Hdr
23     EFI_SMBIOS_TYPE_BIOS_LANGUAGE_INFORMATION,            // Type,
24     0,                                                    // Length,
25     0                                                     // Handle
26   },
27   0,                                                    // InstallableLanguages
28   0,                                                    // Flags
29   {
30     0                                                   // Reserved[15]
31   },
32   1                                                     // CurrentLanguage
33 };
34