]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Efi/Protocol/DriverSupportedEfiVersion/DriverSupportedEfiVersion.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Efi / Protocol / DriverSupportedEfiVersion / DriverSupportedEfiVersion.h
1 /*++
2
3 Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
4 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 DriverSupportedEfiVersion.h
15
16 Abstract:
17
18 Driver Supported EFI Version Protocol
19
20 Revision History:
21
22 --*/
23
24 #ifndef _EFI_DRIVER_SUPPORTED_EFI_VERSION_H_
25 #define _EFI_DRIVER_SUPPORTED_EFI_VERSION_H_
26
27 //
28 // Global ID for the Driver Supported EFI Version Protocol
29 //
30 #define EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL_GUID \
31 { \
32 0x5c198761, 0x16a8, 0x4e69, {0x97, 0x2c, 0x89, 0xd6, 0x79, 0x54, 0xf8, 0x1d} \
33 }
34
35 EFI_FORWARD_DECLARATION (EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL);
36
37 //
38 // Interface structure for the Driver Supported EFI Version Protocol
39 //
40 struct _EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL {
41 UINT32 Length;
42 UINT32 FirmwareVersion;
43 };
44
45 extern EFI_GUID gEfiDriverSupportedEfiVersionProtocolGuid;
46
47 #endif