summaryrefslogtreecommitdiff
path: root/EDK/MiniSetup/EzportPlus/HotkeyBin.h
blob: 838ed053a763d5ee5aaeb5b7fcc9cacadea2ba1e (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
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
//**                                                             **//
//**         (C)Copyright 2010, American Megatrends, Inc.        **//
//**                                                             **//
//**                     All Rights Reserved.                    **//
//**                                                             **//
//**           5555 Oakbrook Pkwy, Norcross, Georgia 30093       **//
//**                                                             **//
//**                     Phone (770)-246-8600                    **//
//**                                                             **//
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
#ifndef __HOTKEY_BIN_H__
#define __HOTKEY_BIN_H__

typedef	VOID	(*HOTKEY_CALLBACK)	( VOID *container, VOID *object, VOID *cookie );

typedef struct _HOTKEY_TEMPLATE
{
	EFI_INPUT_KEY	Key;
	UINT32			KeySftSte;
	HOTKEY_CALLBACK	Callback;
	UINT32			BasePage;
}
HOTKEY_TEMPLATE;

extern VOID EzportPlusHandleEscKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID EzportPlusHandleHelpKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID EzportPlusHandlePrevValuesKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID EzportPlusHandleFailsafeKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID EzportPlusHandleOptimalKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID EzportPlusHandleSaveExitKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID EzportPlusHandlePrnScrnKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID	PrntScrnKeyNotification(VOID *app, VOID *hotkey, VOID *cookie );//EIP-123311

#endif //__HOTKEY_BIN_H__
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
//**                                                             **//
//**         (C)Copyright 2010, American Megatrends, Inc.        **//
//**                                                             **//
//**                     All Rights Reserved.                    **//
//**                                                             **//
//**           5555 Oakbrook Pkwy, Norcross, Georgia 30093       **//
//**                                                             **//
//**                     Phone (770)-246-8600                    **//
//**                                                             **//
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//