]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiDefine.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / FrameworkTasks / org / tianocore / framework / tasks / EfiDefine.java
1 /** @file
2 EfiDefine class.
3
4 EfiDefine class records the UEFI return status value.
5
6 Copyright (c) 2006, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16
17 package org.tianocore.framework.tasks;
18
19 /**
20 EfiDefine class.
21
22 EfiDefine class records the UEFI return status value.
23 **/
24 public interface EfiDefine {
25 //
26 // EFI define Interface for define constant related to UEFI.
27 //
28 static final int EFI_SUCCESS = 0;
29 static final int EFI_LOAD_ERROR = 0x80000001;
30 static final int EFI_INVALID_PARAMETER = 0x80000002;
31 static final int EFI_UNSUPPORTED = 0x80000003;
32 static final int EFI_BAD_BUFFER_SIZE = 0x80000004;
33 static final int EFI_BUFFER_TOO_SMALL = 0x80000005;
34 static final int EFI_NOT_READY = 0x80000006;
35 static final int EFI_DEVICE_ERROR = 0x80000007;
36 static final int EFI_WRITE_PROTECTED = 0x80000008;
37 static final int EFI_OUT_OF_RESOURCES = 0x80000009;
38 static final int EFI_VOLUME_CORRUPTED = 0x8000000a;
39 static final int EFI_VOLUME_FULL = 0x8000000b;
40 static final int EFI_NO_MEDIA = 0x8000000c;
41 static final int EFI_MEDIA_CHANGED = 0x8000000d;
42 static final int EFI_NOT_FOUND = 0x8000000e;
43 static final int EFI_ACCESS_DENIED = 0x8000000f;
44 static final int EFI_NO_RESPONSE = 0x80000010;
45 static final int EFI_NO_MAPPING = 0x80000011;
46 static final int EFI_TIMEOUT = 0x80000012;
47 static final int EFI_NOT_STARTED = 0x80000013;
48 static final int EFI_ALREADY_STARTED = 0x80000014;
49 static final int EFI_ABORTED = 0x80000015;
50 static final int EFI_ICMP_ERROR = 0x80000016;
51 static final int EFI_TFTP_ERROR = 0x80000017;
52 static final int EFI_PROTOCOL_ERROR = 0x80000018;
53 static final int EFI_INCOMPATIBLE_VERSION = 0x80000019;
54 static final int EFI_SECURITY_VIOLATION = 0x80000020;
55 static final int EFI_CRC_ERROR = 0x80000021;
56 }