summaryrefslogtreecommitdiff
path: root/Include/Protocol/AmiReflashProtocol.h
blob: 1fe8127db8bb03414644f4e6b5ba972e00ab17f3 (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
//**                                                             **//
//**         (C)Copyright 2012, American Megatrends, Inc.        **//
//**                                                             **//
//**                     All Rights Reserved.                    **//
//**                                                             **//
//**   5555 Oakbrook Pkwy, Building 200,Norcross, Georgia 30093  **//
//**                                                             **//
//**                     Phone (770)-246-8600                    **//
//**                                                             **//
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
// $Archive: /Alaska/BIN/Core/Include/Protocol/AmiReflashProtocol.h $
//
// $Author: Artems $
//
// $Revision: 1 $
//
// $Date: 7/20/12 10:09a $
//
//*****************************************************************//
//*****************************************************************//
// Revision History
// ----------------
// $Log: /Alaska/BIN/Core/Include/Protocol/AmiReflashProtocol.h $
// 
// 1     7/20/12 10:09a Artems
// [TAG]  		EIP93520
// [Category]  	New Feature
// [Description]  	Added AmiReflashProtocol definition file
// [Files]  		AmiReflashProtocol.h
// 
//*****************************************************************//
//*****************************************************************//
//<AMI_FHDR_START>
//----------------------------------------------------------------------------
//
// Name:		AMIReflashProtocol.h
//
// Description:	Header file for ESRT.
//
//----------------------------------------------------------------------------
//<AMI_FHDR_END>

#ifndef __REFLASH_PROTOCOL__H__
#define __REFLASH_PROTOCOL__H__

#ifdef __cplusplus
extern "C"
{
#endif

#define EFI_REFLASH_PROTOCOL_GUID \
    {0x8fe545e5, 0xdca9, 0x4d52, 0xbf, 0xcd, 0x8f, 0x13, 0xe7, 0x17, 0x1, 0x5f}

GUID_VARIABLE_DECLARATION(gAmiReflashProtocolGuid, EFI_REFLASH_PROTOCOL_GUID);

typedef struct _EFI_REFLASH_PROTOCOL EFI_REFLASH_PROTOCOL;

typedef EFI_STATUS
(EFIAPI *EFI_REFLASH_PROGRESS)(
    IN EFI_REFLASH_PROTOCOL    *This
);

typedef EFI_STATUS
(EFIAPI *EFI_REFLASH_GET_DISPLAY_IMAGE)(
    IN EFI_REFLASH_PROTOCOL *This,
    OUT UINTN               *CoordinateX,
    OUT UINTN               *CoordinateY,
    OUT VOID                **ImageAddress
);

struct _EFI_REFLASH_PROTOCOL {
    EFI_REFLASH_PROGRESS          CapUpdProgress;
    EFI_REFLASH_GET_DISPLAY_IMAGE GetDisplayImage;  	  	
};


    /****** DO NOT WRITE BELOW THIS LINE *******/
#ifdef __cplusplus
}
#endif
#endif

//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
//**                                                             **//
//**         (C)Copyright 2012, American Megatrends, Inc.        **//
//**                                                             **//
//**                     All Rights Reserved.                    **//
//**                                                             **//
//**   5555 Oakbrook Pkwy, Building 200,Norcross, Georgia 30093  **//
//**                                                             **//
//**                     Phone (770)-246-8600                    **//
//**                                                             **//
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//