]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Compatibility/FrameworkHiiToUefiHiiThunk/HiiHandle.h
clean up the un-suitable ';' location when declaring the functions. The regular is...
[mirror_edk2.git] / EdkCompatibilityPkg / Compatibility / FrameworkHiiToUefiHiiThunk / HiiHandle.h
1 /**@file
2 This file is for functins related to assign and free Framework HII handle number.
3
4 Copyright (c) 2006 - 2008, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _HII_HANDLE_H
16 #define _HII_HANDLE_H
17
18 #include <FrameworkDxe.h>
19 #include <Protocol/FrameworkHii.h>
20 #include <Library/DebugLib.h>
21
22 VOID
23 InitHiiHandleDatabase (
24 VOID
25 );
26
27 EFI_STATUS
28 AllocateHiiHandle (
29 FRAMEWORK_EFI_HII_HANDLE *Handle
30 );
31
32
33 VOID
34 FreeHiiHandle (
35 FRAMEWORK_EFI_HII_HANDLE Handle
36 );
37
38
39 #endif
40