1 /*++ 2 3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR> 4 5 6 This program and the accompanying materials are licensed and made available under 7 8 the terms and conditions of the BSD License that accompanies this distribution. 9 10 The full text of the license may be found at 11 12 http://opensource.org/licenses/bsd-license.php. 13 14 15 16 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 18 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19 20 21 22 23 24 Module Name: 25 26 PlatformIdeInit.h 27 28 Abstract: 29 30 EFI Platform Ide Init Protocol 31 32 Revision History 33 34 **/ 35 36 #ifndef _EFI_PLATFORM_IDE_INIT_H_ 37 #define _EFI_PLATFORM_IDE_INIT_H_ 38 39 // 40 // Global ID for the IDE Platform Protocol 41 // 42 #define EFI_PLATFORM_IDE_INIT_PROTOCOL_GUID \ 43 { 0x377c66a3, 0x8fe7, 0x4ee8, 0x85, 0xb8, 0xf1, 0xa2, 0x82, 0x56, 0x9e, 0x3b }; 44 45 EFI_FORWARD_DECLARATION (EFI_PLATFORM_IDE_INIT_PROTOCOL); 46 47 48 // 49 // Interface structure for the Platform IDE Init Protocol 50 // 51 typedef struct _EFI_PLATFORM_IDE_INIT_PROTOCOL { 52 BOOLEAN SmartMode; 53 } EFI_PLATFORM_IDE_INIT_PROTOCOL; 54 55 extern EFI_GUID gEfiPlatformIdeInitProtocolGuid; 56 57 #endif 58