]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Include/Protocol/PciHotPlugRequest.h
Remove the additional build options.
[mirror_edk2.git] / IntelFrameworkModulePkg / Include / Protocol / PciHotPlugRequest.h
CommitLineData
8ca67c46 1/** @file\r
a9102619 2\r
3db51098 3Copyright (c) 2006 - 2007, Intel Corporation \r
a9102619 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
3db51098 12**/\r
a9102619 13\r
14#ifndef __PCI_HOTPLUG_REQUEST_H_\r
15#define __PCI_HOTPLUG_REQUEST_H_\r
16\r
17#define EFI_PCI_HOTPLUG_REQUEST_PROTOCOL_GUID \\r
18{0x19cb87ab,0x2cb9,{0x4665,0x83,0x60,0xdd,0xcf,0x60,0x54,0xf7,0x9d}}\r
19\r
20typedef enum {\r
21 EfiPciHotPlugRequestAdd,\r
22 EfiPciHotplugRequestRemove\r
23} EFI_PCI_HOTPLUG_OPERATION;\r
24\r
25typedef struct _EFI_PCI_HOTPLUG_REQUEST_PROTOCOL EFI_PCI_HOTPLUG_REQUEST_PROTOCOL;\r
26\r
27typedef\r
28EFI_STATUS\r
29(EFIAPI *EFI_PCI_HOTPLUG_REQUEST_NOTIFY) (\r
30 IN EFI_PCI_HOTPLUG_REQUEST_PROTOCOL *This,\r
31 IN EFI_PCI_HOTPLUG_OPERATION Operation,\r
32 IN EFI_HANDLE Controller,\r
33 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL,\r
34 IN OUT UINT8 *NumberOfChildren,\r
35 IN OUT EFI_HANDLE *ChildHandleBuffer\r
36);\r
37\r
38\r
39\r
40struct _EFI_PCI_HOTPLUG_REQUEST_PROTOCOL {\r
41 EFI_PCI_HOTPLUG_REQUEST_NOTIFY Notify;\r
42};\r
43\r
44extern EFI_GUID gEfiPciHotPlugRequestProtocolGuid;\r
45\r
46#endif\r