mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
41 lines
1.5 KiB
C
41 lines
1.5 KiB
C
/*++
|
|
|
|
Copyright (c) 2005, Intel Corporation
|
|
All rights reserved. This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
Module Name:
|
|
|
|
Handle.h
|
|
|
|
Abstract:
|
|
|
|
Infomation about the handle function.
|
|
|
|
Revision History
|
|
|
|
--*/
|
|
#ifndef _HANDLE_H
|
|
#define _HANDLE_H
|
|
|
|
#define EFI_HANDLE_TYPE_UNKNOWN 0x000
|
|
#define EFI_HANDLE_TYPE_IMAGE_HANDLE 0x001
|
|
#define EFI_HANDLE_TYPE_DRIVER_BINDING_HANDLE 0x002
|
|
#define EFI_HANDLE_TYPE_DEVICE_DRIVER 0x004
|
|
#define EFI_HANDLE_TYPE_BUS_DRIVER 0x008
|
|
#define EFI_HANDLE_TYPE_DRIVER_CONFIGURATION_HANDLE 0x010
|
|
#define EFI_HANDLE_TYPE_DRIVER_DIAGNOSTICS_HANDLE 0x020
|
|
#define EFI_HANDLE_TYPE_COMPONENT_NAME_HANDLE 0x040
|
|
#define EFI_HANDLE_TYPE_DEVICE_HANDLE 0x080
|
|
#define EFI_HANDLE_TYPE_PARENT_HANDLE 0x100
|
|
#define EFI_HANDLE_TYPE_CONTROLLER_HANDLE 0x200
|
|
#define EFI_HANDLE_TYPE_CHILD_HANDLE 0x400
|
|
|
|
|
|
#endif
|