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 LegacyHandleEscKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID LegacyHandleHelpKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID LegacyHandlePrevValuesKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID LegacyHandleFailsafeKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID LegacyHandleOptimalKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID LegacyHandleSaveExitKey( VOID *app, VOID *hotkey, VOID *cookie );
extern VOID LegacyHandlePrnScrnKey( 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 **//
//** **//
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
|