]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/PlatformBdsDxe/Generic/BootMngr/BootManager.h
b26f811da4f56b5dc50d07d91abaad968cbf8dae
[mirror_edk2.git] / Nt32Pkg / PlatformBdsDxe / Generic / BootMngr / BootManager.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 BootManager.h
15
16 Abstract:
17
18 The platform boot manager reference implement
19
20 Revision History
21
22 --*/
23
24 #ifndef _EFI_BOOT_MANAGER_H
25 #define _EFI_BOOT_MANAGER_H
26
27 //
28 // Include common header file for this module.
29 //
30 #include "CommonHeader.h"
31
32 #include "Generic/Bds.h"
33 #include "BdsPlatform.h"
34 #include "Generic/String.h"
35
36 EFI_STATUS
37 EFIAPI
38 BootManagerCallbackRoutine (
39 IN EFI_FORM_CALLBACK_PROTOCOL *This,
40 IN UINT16 KeyValue,
41 IN EFI_IFR_DATA_ARRAY *DataArray,
42 OUT EFI_HII_CALLBACK_PACKET **Packet
43 );
44
45 VOID
46 CallBootManager (
47 VOID
48 );
49
50 #define BOOT_MANAGER_GUID \
51 { \
52 0x847bc3fe, 0xb974, 0x446d, {0x94, 0x49, 0x5a, 0xd5, 0x41, 0x2e, 0x99, 0x3b } \
53 }
54
55 #endif