blob: 2d9a0d1fafede8081424f55bb5ab581683bf30c9 [file] [log] [blame]
bbahnsen878ddf12006-04-21 22:54:32 +00001/*++
2
3Copyright (c) 2006, Intel Corporation
4All rights reserved. This program and the accompanying materials
5are licensed and made available under the terms and conditions of the BSD License
6which accompanies this distribution. The full text of the license may be found at
7http://opensource.org/licenses/bsd-license.php
8
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12Module Name:
13
14 BootState.h
15
16Abstract:
17
18 Constants and declarations that are common accross PEI and DXE.
19--*/
20
21#ifndef _BOOT_STATE_H_
22#define _BOOT_STATE_H_
23
24//
25// BOOT STATE
26//
27
28typedef UINT32 EFI_BOOT_STATE;
29
30#define BOOT_STATE_VARIABLE_NAME L"BootState"
31
32#define EFI_BOOT_STATE_VARIABLE_GUID \
33 {0x60b5e939, 0xfcf, 0x4227, {0xba, 0x83, 0x6b, 0xbe, 0xd4, 0x5b, 0xc0, 0xe3} }
34
35extern EFI_GUID gEfiBootStateGuid;
36#endif