ReactOS 0.4.15-dev-7942-gd23573b
tuimenu.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: FreeLoader
4 * FILE: boot/freeldr/freeldr/ui/tuimenu.c
5 * PURPOSE: Text UI Menu Functions
6 * PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
7 * Brian Palmer (brianp@sginet.com)
8 */
9
10/* INCLUDES ******************************************************************/
11
12#include <freeldr.h>
13
14/* FUNCTIONS *****************************************************************/
15
16static VOID
19
20static ULONG
23 _In_ UiMenuKeyPressFilterCallback KeyPressFilter);
24
25static VOID
28
31 IN PCSTR MenuHeader,
32 IN PCSTR MenuFooter OPTIONAL,
33 IN BOOLEAN ShowBootOptions,
34 IN PCSTR MenuItemList[],
35 IN ULONG MenuItemCount,
36 IN ULONG DefaultMenuItem,
37 IN LONG MenuTimeOut,
38 OUT PULONG SelectedMenuItem,
39 IN BOOLEAN CanEscape,
42{
43 UI_MENU_INFO MenuInformation;
44 ULONG LastClockSecond;
45 ULONG CurrentClockSecond;
46 ULONG KeyPress;
47
48 /*
49 * Before taking any default action if there is no timeout,
50 * check whether the supplied key filter callback function
51 * may handle a specific user keypress. If it does, the
52 * timeout is cancelled.
53 */
54 if (!MenuTimeOut && KeyPressFilter && MachConsKbHit())
55 {
56 /* Get the key (get the extended key if needed) */
57 KeyPress = MachConsGetCh();
58 if (KeyPress == KEY_EXTENDED)
59 KeyPress = MachConsGetCh();
60
61 /*
62 * Call the supplied key filter callback function to see
63 * if it is going to handle this keypress.
64 */
65 if (KeyPressFilter(KeyPress, DefaultMenuItem, Context))
66 {
67 /* It processed the key character, cancel the timeout */
68 MenuTimeOut = -1;
69 }
70 }
71
72 /* Check if there is no timeout */
73 if (!MenuTimeOut)
74 {
75 /* Return the default selected item */
76 if (SelectedMenuItem) *SelectedMenuItem = DefaultMenuItem;
77 return TRUE;
78 }
79
80 /* Setup the MENU_INFO structure */
81 MenuInformation.MenuHeader = MenuHeader;
82 MenuInformation.MenuFooter = MenuFooter;
83 MenuInformation.ShowBootOptions = ShowBootOptions;
84 MenuInformation.MenuItemList = MenuItemList;
85 MenuInformation.MenuItemCount = MenuItemCount;
86 MenuInformation.MenuTimeRemaining = MenuTimeOut;
87 MenuInformation.SelectedMenuItem = DefaultMenuItem;
88 MenuInformation.Context = Context;
89
90 /* Calculate the size of the menu box */
91 TuiCalcMenuBoxSize(&MenuInformation);
92
93 /* Draw the menu */
94 UiVtbl.DrawMenu(&MenuInformation);
95
96 /* Get the current second of time */
97 LastClockSecond = ArcGetTime()->Second;
98
99 /* Process keys */
100 while (TRUE)
101 {
102 /* Process key presses */
103 KeyPress = TuiProcessMenuKeyboardEvent(&MenuInformation, KeyPressFilter);
104
105 /* Check for ENTER or ESC */
106 if (KeyPress == KEY_ENTER) break;
107 if (CanEscape && KeyPress == KEY_ESC) return FALSE;
108
109 /* Get the updated time, and check if more than a second has elapsed */
110 CurrentClockSecond = ArcGetTime()->Second;
111 if (CurrentClockSecond != LastClockSecond)
112 {
113 /* Update the time information */
114 LastClockSecond = CurrentClockSecond;
115
116 // FIXME: Theme-specific
117 /* Update the date & time */
119
120 /* If there is a countdown, update it */
121 if (MenuInformation.MenuTimeRemaining > 0)
122 {
123 MenuInformation.MenuTimeRemaining--;
124 TuiDrawMenuTimeout(&MenuInformation);
125 }
126 else if (MenuInformation.MenuTimeRemaining == 0)
127 {
128 /* A timeout occurred, exit this loop and return selection */
130 break;
131 }
133 }
134
135 MachHwIdle();
136 }
137
138 /* Return the selected item */
139 if (SelectedMenuItem) *SelectedMenuItem = MenuInformation.SelectedMenuItem;
140 return TRUE;
141}
142
143static VOID
146{
147 ULONG i;
148 ULONG Width = 0;
151
152 /* Height is the menu item count plus 2 (top border & bottom border) */
153 Height = MenuInfo->MenuItemCount + 2;
154
155 /* Loop every item */
156 for (i = 0; i < MenuInfo->MenuItemCount; ++i)
157 {
158 /* Get the string length and make it become the new width if necessary */
159 if (MenuInfo->MenuItemList[i])
160 {
161 Length = (ULONG)strlen(MenuInfo->MenuItemList[i]);
162 Width = max(Width, Length);
163 }
164 }
165
166 /* Allow room for left & right borders, plus 4 spaces on each side */
167 Width += 10;
168
169 /* Check if we're drawing a centered menu */
170 if (UiCenterMenu)
171 {
172 /* Calculate the centered menu box area, also ensuring that the top-left
173 * corner is always visible if the borders are partly off-screen */
174 MenuInfo->Left = (UiScreenWidth - min(Width, UiScreenWidth)) / 2;
176 {
177 /* Exclude the header and the status bar */
178 // MenuInfo->Top = (UiScreenHeight - TUI_TITLE_BOX_CHAR_HEIGHT - 1 - Height) / 2
179 // + TUI_TITLE_BOX_CHAR_HEIGHT;
181 }
182 else
183 {
185 }
186 }
187 else
188 {
189 /* Put the menu in the default left-corner position */
190 MenuInfo->Left = -1;
191 MenuInfo->Top = 4;
192 }
193
194 /* The other margins are the same */
195 MenuInfo->Right = MenuInfo->Left + Width - 1;
196 MenuInfo->Bottom = MenuInfo->Top + Height - 1;
197}
198
199VOID
202{
203 ULONG i;
204
205 // FIXME: Theme-specific
206 /* Draw the backdrop */
208
209 /* Draw the menu box */
211
212 /* Draw each line of the menu */
213 for (i = 0; i < MenuInfo->MenuItemCount; ++i)
214 {
216 }
217
218 // FIXME: Theme-specific
219 /* Update the status bar */
220 UiVtbl.DrawStatusText("Use \x18 and \x19 to select, then press ENTER.");
221
222 /* Display the boot options if needed */
223 if (MenuInfo->ShowBootOptions)
224 {
226 }
227
229}
230
231static VOID
234{
236 CHAR MenuLineText[80];
237
238 /* If there is a timeout, draw the time remaining */
239 if (MenuInfo->MenuTimeRemaining >= 0)
240 {
241 /* Find whether the time text string is escaped
242 * with %d for specific countdown insertion. */
244 while ((ptr = strchr(ptr, '%')) && (ptr[1] != 'd'))
245 {
246 /* Ignore any following character (including a following
247 * '%' that would be escaped), thus skip two characters.
248 * If this is the last character, ignore it and stop. */
249 if (*++ptr)
250 ++ptr;
251 }
252 ASSERT(!ptr || (ptr[0] == '%' && ptr[1] == 'd'));
253
254 if (ptr)
255 {
256 /* Copy the time text string up to the '%d' insertion point and
257 * skip it, add the remaining time and the rest of the string. */
258 RtlStringCbPrintfA(MenuLineText, sizeof(MenuLineText),
259 "%.*s%d%s",
261 MenuInfo->MenuTimeRemaining,
262 ptr + 2);
263 }
264 else
265 {
266 /* Copy the time text string, append a separating blank,
267 * and add the remaining time. */
268 RtlStringCbPrintfA(MenuLineText, sizeof(MenuLineText),
269 "%s %d",
271 MenuInfo->MenuTimeRemaining);
272 }
273
274 Length = (ULONG)strlen(MenuLineText);
275 }
276 else
277 {
278 /* Erase the timeout with blanks */
279 Length = 0;
280 }
281
291 if (UiCenterMenu)
292 {
293 /* In boxed menu mode, pad on the left with blanks and box border,
294 * otherwise, pad over all the box length until its right edge. */
295 TuiFillArea(0,
296 MenuInfo->Bottom,
298 ? MenuInfo->Left - 1 /* Left side of the box bottom */
299 : MenuInfo->Right, /* Left side + all box length */
300 MenuInfo->Bottom,
303
304 if (UiMenuBox)
305 {
306 /* Fill with box bottom border */
308 MenuInfo->Bottom,
309 MenuInfo->Right,
310 D_VERT,
311 D_HORZ,
313
314 /* In centered boxed menu mode, the timeout string
315 * does not go past the right border, in principle... */
316 }
317
318 if (Length > 0)
319 {
320 /* Display the timeout at the bottom-right part of the menu */
321 UiDrawText(MenuInfo->Right - Length - 1,
322 MenuInfo->Bottom,
323 MenuLineText,
325 }
326 }
327 else
328 {
329 if (Length > 0)
330 {
331 /* Display the timeout under the menu directly */
332 UiDrawText(0,
333 MenuInfo->Bottom + 4,
334 MenuLineText,
336 }
337
338 /* Pad on the right with blanks, to erase
339 * characters when the string length decreases. */
341 MenuInfo->Bottom + 4,
342 Length ? (Length + 1) : (UiScreenWidth - 1),
343 MenuInfo->Bottom + 4,
346 );
347 }
348}
349
350VOID
353{
354 // FIXME: Theme-specific
355 /* Draw the menu box if requested */
356 if (UiMenuBox)
357 {
358 UiDrawBox(MenuInfo->Left,
359 MenuInfo->Top,
360 MenuInfo->Right,
361 MenuInfo->Bottom,
362 D_VERT,
363 D_HORZ,
364 FALSE, // Filled
365 TRUE, // Shadow
367 }
368
369 /* Update the date & time */
372}
373
374VOID
377 _In_ ULONG MenuItemNumber)
378{
379 ULONG SpaceLeft;
380 ULONG SpaceRight;
381 UCHAR Attribute;
382 CHAR MenuLineText[80];
383
384 /* If this is a separator */
385 if (MenuInfo->MenuItemList[MenuItemNumber] == NULL)
386 {
387 // FIXME: Theme-specific
388 /* Draw its left box corner */
389 if (UiMenuBox)
390 {
391 UiDrawText(MenuInfo->Left,
392 MenuInfo->Top + 1 + MenuItemNumber,
393 "\xC7",
395 }
396
397 /* Make it a separator line and use menu colors */
398 RtlZeroMemory(MenuLineText, sizeof(MenuLineText));
399 RtlFillMemory(MenuLineText,
400 min(sizeof(MenuLineText), (MenuInfo->Right - MenuInfo->Left - 1)),
401 0xC4);
402
403 /* Draw the item */
404 UiDrawText(MenuInfo->Left + 1,
405 MenuInfo->Top + 1 + MenuItemNumber,
406 MenuLineText,
408
409 // FIXME: Theme-specific
410 /* Draw its right box corner */
411 if (UiMenuBox)
412 {
413 UiDrawText(MenuInfo->Right,
414 MenuInfo->Top + 1 + MenuItemNumber,
415 "\xB6",
417 }
418
419 /* We are done */
420 return;
421 }
422
423 /* This is not a separator */
424 ASSERT(MenuInfo->MenuItemList[MenuItemNumber]);
425
426 /* Check if using centered menu */
427 if (UiCenterMenu)
428 {
429 /*
430 * We will want the string centered so calculate
431 * how many spaces will be to the left and right.
432 */
433 ULONG SpaceTotal =
434 (MenuInfo->Right - MenuInfo->Left - 2) -
435 (ULONG)strlen(MenuInfo->MenuItemList[MenuItemNumber]);
436 SpaceLeft = (SpaceTotal / 2) + 1;
437 SpaceRight = (SpaceTotal - SpaceLeft) + 1;
438 }
439 else
440 {
441 /* Simply left-align it */
442 SpaceLeft = 4;
443 SpaceRight = 0;
444 }
445
446 /* Format the item text string */
447 RtlStringCbPrintfA(MenuLineText, sizeof(MenuLineText),
448 "%*s%s%*s",
449 SpaceLeft, "", // Left padding
450 MenuInfo->MenuItemList[MenuItemNumber],
451 SpaceRight, ""); // Right padding
452
453 if (MenuItemNumber == MenuInfo->SelectedMenuItem)
454 {
455 /* If this is the selected item, use the selected colors */
457 }
458 else
459 {
460 /* Normal item colors */
461 Attribute = ATTR(UiTextColor, UiMenuBgColor);
462 }
463
464 /* Draw the item */
465 UiDrawText(MenuInfo->Left + 1,
466 MenuInfo->Top + 1 + MenuItemNumber,
467 MenuLineText,
468 Attribute);
469}
470
471static ULONG
474 _In_ UiMenuKeyPressFilterCallback KeyPressFilter)
475{
476 ULONG KeyEvent = 0;
477 ULONG Selected, Count;
478
479 /* Check for a keypress */
480 if (!MachConsKbHit())
481 return 0; // None, bail out
482
483 /* Check if the timeout is not already complete */
484 if (MenuInfo->MenuTimeRemaining != -1)
485 {
486 /* Cancel it and remove it */
487 MenuInfo->MenuTimeRemaining = -1;
489 }
490
491 /* Get the key (get the extended key if needed) */
492 KeyEvent = MachConsGetCh();
493 if (KeyEvent == KEY_EXTENDED)
494 KeyEvent = MachConsGetCh();
495
496 /*
497 * Call the supplied key filter callback function to see
498 * if it is going to handle this keypress.
499 */
500 if (KeyPressFilter &&
501 KeyPressFilter(KeyEvent, MenuInfo->SelectedMenuItem, MenuInfo->Context))
502 {
503 /* It processed the key character, so redraw and exit */
505 return 0;
506 }
507
508 /* Process the key */
509 if ((KeyEvent == KEY_UP ) || (KeyEvent == KEY_DOWN) ||
510 (KeyEvent == KEY_HOME) || (KeyEvent == KEY_END ))
511 {
512 /* Get the current selected item and count */
513 Selected = MenuInfo->SelectedMenuItem;
514 Count = MenuInfo->MenuItemCount - 1;
515
516 /* Check the key and change the selected menu item */
517 if ((KeyEvent == KEY_UP) && (Selected > 0))
518 {
519 /* Deselect previous item and go up */
520 MenuInfo->SelectedMenuItem--;
521 TuiDrawMenuItem(MenuInfo, Selected);
522 Selected--;
523
524 /* Skip past any separators */
525 if ((Selected > 0) &&
526 (MenuInfo->MenuItemList[Selected] == NULL))
527 {
528 MenuInfo->SelectedMenuItem--;
529 }
530 }
531 else if ( ((KeyEvent == KEY_UP) && (Selected == 0)) ||
532 (KeyEvent == KEY_END) )
533 {
534 /* Go to the end */
535 MenuInfo->SelectedMenuItem = Count;
536 TuiDrawMenuItem(MenuInfo, Selected);
537 }
538 else if ((KeyEvent == KEY_DOWN) && (Selected < Count))
539 {
540 /* Deselect previous item and go down */
541 MenuInfo->SelectedMenuItem++;
542 TuiDrawMenuItem(MenuInfo, Selected);
543 Selected++;
544
545 /* Skip past any separators */
546 if ((Selected < Count) &&
547 (MenuInfo->MenuItemList[Selected] == NULL))
548 {
549 MenuInfo->SelectedMenuItem++;
550 }
551 }
552 else if ( ((KeyEvent == KEY_DOWN) && (Selected == Count)) ||
553 (KeyEvent == KEY_HOME) )
554 {
555 /* Go to the beginning */
556 MenuInfo->SelectedMenuItem = 0;
557 TuiDrawMenuItem(MenuInfo, Selected);
558 }
559
560 /* Select new item and update video buffer */
561 TuiDrawMenuItem(MenuInfo, MenuInfo->SelectedMenuItem);
563 }
564
565 /* Return the pressed key */
566 return KeyEvent;
567}
unsigned char BOOLEAN
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
char * strchr(const char *String, int ch)
Definition: utclib.c:501
TIMEINFO * ArcGetTime(VOID)
Definition: arcemul.c:27
#define MachHwIdle()
Definition: machine.h:139
#define MachConsKbHit()
Definition: machine.h:88
#define MachConsGetCh()
Definition: machine.h:90
VOID DisplayBootTimeOptions(VOID)
Definition: options.c:181
VOID VideoCopyOffScreenBufferToVRAM(VOID)
Definition: video.c:38
ULONG UiScreenWidth
Definition: ui.c:54
VOID UiDrawText(_In_ ULONG X, _In_ ULONG Y, _In_ PCSTR Text, _In_ UCHAR Attr)
Definition: ui.c:254
#define D_HORZ
Definition: ui.h:347
BOOLEAN UiCenterMenu
Definition: ui.c:44
#define D_VERT
Definition: ui.h:349
UCHAR UiTextColor
Definition: ui.c:36
UCHAR UiMenuBgColor
Definition: ui.c:35
#define ATTR(cFore, cBack)
Definition: ui.h:317
CHAR UiTimeText[260]
Definition: ui.c:48
BOOLEAN(* UiMenuKeyPressFilterCallback)(IN ULONG KeyPress, IN ULONG SelectedMenuItem, IN PVOID Context OPTIONAL)
Definition: ui.h:224
UCHAR UiBackdropFgColor
Definition: ui.c:27
UCHAR UiBackdropFillStyle
Definition: ui.c:29
UCHAR UiBackdropBgColor
Definition: ui.c:28
ULONG UiScreenHeight
Definition: ui.c:55
BOOLEAN UiMenuBox
Definition: ui.c:43
UIVTBL UiVtbl
Definition: ui.c:64
VOID UiDrawBackdrop(VOID)
Definition: ui.c:233
VOID UiDrawBox(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr)
Definition: ui.c:248
UCHAR UiSelectedTextColor
Definition: ui.c:37
UCHAR UiSelectedTextBgColor
Definition: ui.c:38
UCHAR UiMenuFgColor
Definition: ui.c:34
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define RtlFillMemory(Dest, Length, Fill)
Definition: winternl.h:599
#define KEY_DOWN
Definition: keycodes.h:46
#define KEY_EXTENDED
Definition: keycodes.h:38
#define KEY_ESC
Definition: keycodes.h:49
#define KEY_END
Definition: keycodes.h:64
#define KEY_ENTER
Definition: keycodes.h:39
#define KEY_HOME
Definition: keycodes.h:44
#define KEY_UP
Definition: keycodes.h:45
#define ASSERT(a)
Definition: mode.c:44
static PVOID ptr
Definition: dispmode.c:27
#define min(a, b)
Definition: monoChain.cc:55
#define _In_
Definition: ms_sal.h:308
int Count
Definition: noreturn.cpp:7
_In_ ULONG _In_ ULONG _In_ ULONG Length
Definition: ntddpcm.h:102
NTSTRSAFEVAPI RtlStringCbPrintfA(_Out_writes_bytes_(cbDest) _Always_(_Post_z_) NTSTRSAFE_PSTR pszDest, _In_ size_t cbDest, _In_ _Printf_format_string_ NTSTRSAFE_PCSTR pszFormat,...)
Definition: ntstrsafe.h:1148
long LONG
Definition: pedump.c:60
PULONG MinorVersion OPTIONAL
Definition: CrossNt.h:68
menu info structure
Definition: window.h:276
USHORT Second
Definition: fw.h:16
VOID(* DrawMenu)(PUI_MENU_INFO MenuInfo)
Definition: ui.h:300
VOID(* DrawStatusText)(PCSTR StatusText)
Definition: ui.h:260
PCSTR MenuHeader
Definition: ui.h:206
BOOLEAN ShowBootOptions
Definition: ui.h:208
LONG MenuTimeRemaining
Definition: ui.h:212
ULONG SelectedMenuItem
Definition: ui.h:213
PCSTR MenuFooter
Definition: ui.h:207
ULONG MenuItemCount
Definition: ui.h:211
PCSTR * MenuItemList
Definition: ui.h:210
PVOID Context
Definition: ui.h:214
#define max(a, b)
Definition: svc.c:63
#define TUI_TITLE_BOX_CHAR_HEIGHT
Definition: tui.h:33
VOID TuiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, CHAR FillChar, UCHAR Attr)
Definition: tui.c:329
VOID TuiDrawBoxBottomLine(_In_ ULONG Left, _In_ ULONG Bottom, _In_ ULONG Right, _In_ UCHAR VertStyle, _In_ UCHAR HorzStyle, _In_ UCHAR Attr)
Definition: tui.c:458
VOID TuiUpdateDateTime(VOID)
Definition: tui.c:547
VOID TuiDrawMenu(_In_ PUI_MENU_INFO MenuInfo)
Definition: tuimenu.c:200
static ULONG TuiProcessMenuKeyboardEvent(_In_ PUI_MENU_INFO MenuInfo, _In_ UiMenuKeyPressFilterCallback KeyPressFilter)
Definition: tuimenu.c:472
BOOLEAN TuiDisplayMenu(IN PCSTR MenuHeader, IN PCSTR MenuFooter OPTIONAL, IN BOOLEAN ShowBootOptions, IN PCSTR MenuItemList[], IN ULONG MenuItemCount, IN ULONG DefaultMenuItem, IN LONG MenuTimeOut, OUT PULONG SelectedMenuItem, IN BOOLEAN CanEscape, IN UiMenuKeyPressFilterCallback KeyPressFilter OPTIONAL, IN PVOID Context OPTIONAL)
Definition: tuimenu.c:30
VOID TuiDrawMenuItem(_In_ PUI_MENU_INFO MenuInfo, _In_ ULONG MenuItemNumber)
Definition: tuimenu.c:375
VOID TuiDrawMenuBox(_In_ PUI_MENU_INFO MenuInfo)
Definition: tuimenu.c:351
static VOID TuiCalcMenuBoxSize(_In_ PUI_MENU_INFO MenuInfo)
Definition: tuimenu.c:144
static VOID TuiDrawMenuTimeout(_In_ PUI_MENU_INFO MenuInfo)
Definition: tuimenu.c:232
uint32_t * PULONG
Definition: typedefs.h:59
const char * PCSTR
Definition: typedefs.h:52
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
#define IN
Definition: typedefs.h:39
uint32_t ULONG
Definition: typedefs.h:59
#define OUT
Definition: typedefs.h:40
char * PCHAR
Definition: typedefs.h:51
_In_ HFONT _Out_ PUINT _Out_ PUINT Width
Definition: font.h:89
_In_ HFONT _Out_ PUINT Height
Definition: font.h:88
unsigned char UCHAR
Definition: xmlstorage.h:181
char CHAR
Definition: xmlstorage.h:175