]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Include/Library/UefiHiiServicesLib.h
MdeModulePkg/S3SmmInitDone.h: Fix copyright coding style error.
[mirror_edk2.git] / MdeModulePkg / Include / Library / UefiHiiServicesLib.h
... / ...
CommitLineData
1/** @file\r
2 Provides global variables that are pointers to the UEFI HII related protocols.\r
3 All of the UEFI HII related protocols are optional, so the consumers of this\r
4 library class must verify that the global variable pointers are not NULL before\r
5 use.\r
6\r
7Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
8This program and the accompanying materials are licensed and made available under\r
9the terms and conditions of the BSD License that accompanies this distribution.\r
10The full text of the license may be found at\r
11http://opensource.org/licenses/bsd-license.php.\r
12\r
13THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#ifndef __UEFI_HII_SERVICES_LIB_H__\r
19#define __UEFI_HII_SERVICES_LIB_H__\r
20\r
21#include <Protocol/HiiFont.h>\r
22#include <Protocol/HiiString.h>\r
23#include <Protocol/HiiImage.h>\r
24#include <Protocol/HiiDatabase.h>\r
25#include <Protocol/HiiConfigRouting.h>\r
26\r
27///\r
28/// The pointer to the UEFI HII Font Protocol.\r
29///\r
30extern EFI_HII_FONT_PROTOCOL *gHiiFont;\r
31\r
32///\r
33/// The pointer to the UEFI HII String Protocol.\r
34///\r
35extern EFI_HII_STRING_PROTOCOL *gHiiString;\r
36\r
37///\r
38/// The pointer to the UEFI HII Image Protocol.\r
39///\r
40extern EFI_HII_IMAGE_PROTOCOL *gHiiImage;\r
41\r
42///\r
43/// The pointer to the UEFI HII Database Protocol.\r
44///\r
45extern EFI_HII_DATABASE_PROTOCOL *gHiiDatabase;\r
46\r
47///\r
48/// The pointer to the UEFI HII Config Rounting Protocol.\r
49///\r
50extern EFI_HII_CONFIG_ROUTING_PROTOCOL *gHiiConfigRouting;\r
51\r
52#endif\r