hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*++
 
Copyright (c)  2013  - 2014, Intel Corporation. All rights reserved
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
 
 
--*/
 
 
/*++
Module Name:
 
  EmmcCardInfoProtocol.h
 
Abstract:
 
  Interface definition for EFI_EMMC_CARD_INFO_PROTOCOL
 
--*/
 
 
#ifndef _EMMC_CARD_INFO_H_
#define _EMMC_CARD_INFO_H_
 
#define EFI_EMMC_CARD_INFO_PROTOCOL_GUID \
  { \
    0x1ebe5ab9, 0x2129, 0x49e7, {0x84, 0xd7, 0xee, 0xb9, 0xfc, 0xe5, 0xde, 0xdd } \
  }
 
typedef struct _EFI_EMMC_CARD_INFO_PROTOCOL  EFI_EMMC_CARD_INFO_PROTOCOL;
 
 
//
// EMMC Card info Structures
//
struct _EFI_EMMC_CARD_INFO_PROTOCOL {
  CARD_DATA *CardData;
};
 
extern EFI_GUID gEfiEmmcCardInfoProtocolGuid;
#endif