]> git.proxmox.com Git - mirror_edk2.git/blob - EdkNt32Pkg/Dxe/PlatformBds/Generic/BootMngr/BootManager.h
Initial import.
[mirror_edk2.git] / EdkNt32Pkg / Dxe / PlatformBds / 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 #include "Generic/Bds.h"
28 #include "BdsPlatform.h"
29 #include "Generic/String.h"
30
31 EFI_STATUS
32 EFIAPI
33 BootManagerCallbackRoutine (
34 IN EFI_FORM_CALLBACK_PROTOCOL *This,
35 IN UINT16 KeyValue,
36 IN EFI_IFR_DATA_ARRAY *DataArray,
37 OUT EFI_HII_CALLBACK_PACKET **Packet
38 );
39
40 VOID
41 CallBootManager (
42 VOID
43 );
44
45 #define BOOT_MANAGER_GUID \
46 { \
47 0x847bc3fe, 0xb974, 0x446d, {0x94, 0x49, 0x5a, 0xd5, 0x41, 0x2e, 0x99, 0x3b } \
48 }
49
50 #endif