]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Efi/Protocol/BusSpecificDriverOverride/BusSpecificDriverOverride.h
Add in the 1st version of ECP.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Efi / Protocol / BusSpecificDriverOverride / BusSpecificDriverOverride.h
1 /*++
2
3 Copyright (c) 2004, 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 BusSpecificDriverOverride.h
15
16 Abstract:
17
18 Bus Specific Driver Override protocol as defined in the EFI 1.1 specification.
19
20 --*/
21
22 #ifndef _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_H_
23 #define _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_H_
24
25 //
26 // Global ID for the Bus Specific Driver Override Protocol
27 //
28 #define EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_GUID \
29 { \
30 0x3bc1b285, 0x8a15, 0x4a82, 0xaa, 0xbf, 0x4d, 0x7d, 0x13, 0xfb, 0x32, 0x65 \
31 }
32
33 EFI_FORWARD_DECLARATION (EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL);
34
35 //
36 // Prototypes for the Bus Specific Driver Override Protocol
37 //
38 typedef
39 EFI_STATUS
40 (EFIAPI *EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER) (
41 IN EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL * This,
42 IN OUT EFI_HANDLE * DriverImageHandle
43 );
44
45 //
46 // Interface structure for the Bus Specific Driver Override Protocol
47 //
48 typedef struct _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL {
49 EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER GetDriver;
50 } EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL;
51
52 extern EFI_GUID gEfiBusSpecificDriverOverrideProtocolGuid;
53
54 #endif