]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Framework/Protocol/IncompatiblePciDeviceSupport/IncompatiblePciDeviceSupport.h
Add in the 1st version of ECP.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Protocol / IncompatiblePciDeviceSupport / IncompatiblePciDeviceSupport.h
CommitLineData
3eb9473e 1/*++\r
2\r
3Copyright (c) 2004, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 IncompatiblePciDeviceSupport.h\r
15 \r
16Abstract:\r
17\r
18 EFI Incompatible PCI Device Support Protocol\r
19\r
20Revision History\r
21\r
22--*/\r
23\r
24#ifndef _INCOMPATIBLE_PCI_DEVICE_SUPPORT_H_\r
25#define _INCOMPATIBLE_PCI_DEVICE_SUPPORT_H_\r
26\r
27#define EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_PROTOCOL_GUID \\r
28 {0xeb23f55a, 0x7863, 0x4ac2, 0x8d, 0x3d, 0x95, 0x65, 0x35, 0xde, 0x03, 0x75}\r
29\r
30EFI_FORWARD_DECLARATION (EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT);\r
31\r
32 \r
33typedef\r
34EFI_STATUS\r
35(EFIAPI *EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_CHECK_DEVICE) (\r
36 IN EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT *This,\r
37 IN UINTN VendorId,\r
38 IN UINTN DeviceId,\r
39 IN UINTN Revision,\r
40 IN UINTN SubVendorId,OPTIONAL\r
41 IN UINTN SubDeviceId,OPTIONAL\r
42 OUT VOID *Configuration\r
43); \r
44\r
45\r
46//\r
47// Interface structure for the Incompatible PCI Device Support Protocol\r
48//\r
49typedef struct _EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT {\r
50 EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_CHECK_DEVICE CheckDevice; \r
51} EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_PROTOCOL;\r
52\r
53extern EFI_GUID gEfiIncompatiblePciDeviceSupportProtocolGuid;\r
54 \r
55#endif\r