blob: 71ed8048effc0b7af0d98ada874f1c1c6afc1d77 (
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
|
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
//** **//
//** (C)Copyright 1985-2010, American Megatrends, Inc. **//
//** **//
//** All Rights Reserved. **//
//** **//
//** 5555 Oakbrook Pkwy , Norcross, GA 30071 **//
//** **//
//** Phone: (770)-246-8600 **//
//** **//
//*****************************************************************//
//*****************************************************************//
//*****************************************************************//
// $Archive: /Alaska/SOURCE/Modules/AMITSE2_0/AMITSE/TseLite/StyleHook/styleHook39.c $
//
// $Author: Arunsb $
//
// $Revision: 2 $
//
// $Date: 10/18/12 6:21a $
//
//*****************************************************************//
//*****************************************************************//
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Modules/AMITSE2_0/AMITSE/TseLite/StyleHook/styleHook39.c $
//
// 2 10/18/12 6:21a Arunsb
// Updated for 2.16.1235 QA submission
//
// 3 10/10/12 12:40p Arunsb
// Synched the source for v2.16.1232, backup with Aptio
//
// 1 1/06/11 7:36p Madhans
// [TAG] - EIP 51678
// [Category]- Enhancment
// [Severity]- Mordarate
// [Symptom]- If OEMs override the style module parts, If new tse adds
// new style hook then
// if the OEM has different style module, even if they don't need use the
// hook to avoid
// compilation issue they need touch their style module to add the new
// hook.
// [RootCause] - The Original Style Hooks are part of Style module itself.
// [Solution]- To create Empty style Hook List in TSE core. This will
// allows the OEM not
// to change their style module to update newer TSE.
// [Files] - StyleHook Module Part under TSE lite sources. StyleHook.lib
// StyleHookx64.lib tselitebin.sdl
//
//*****************************************************************//
//*****************************************************************//
//<AMI_FHDR_START>
//
// Name: StyleHook39.c
//
// Description: Contains generic or default style functions.
//
//<AMI_FHDR_END>
//**********************************************************************
#include "minisetup.h"
//<AMI_PHDR_START>
//----------------------------------------------------------------------------
// Procedure: StyleGetScrollBarUpArrowColor
//
// Description: Function to get scrollbar UpArrow Color
//
// Input: VOID
//
// Output: FGCOLOR|BGCOLOR
//
//----------------------------------------------------------------------------
//<AMI_PHDR_END>
UINT8 StyleGetScrollBarUpArrowColor(VOID)
{
return (EFI_BACKGROUND_BLUE|EFI_WHITE);
//return (SCROLLBAR_UPARROW_FGCOLOR | SCROLLBAR_UPARROW_BGCOLOR) ;
}
//*****************************************************************//
//*****************************************************************//
//** **//
//** (C)Copyright 1985-2010, American Megatrends, Inc. **//
//** **//
//** All Rights Reserved. **//
//** **//
//** 5555 Oakbrook Pkwy , Norcross, GA 30071 **//
//** **//
//** Phone: (770)-246-8600 **//
//** **//
//*****************************************************************//
//*****************************************************************//
|