Changeset 60 in xtideuniversalbios for trunk/Assembly_Library/Inc/Menu.inc


Ignore:
Timestamp:
Nov 25, 2010, 2:17:45 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:

  • Timeout count down is now stopped when any key pressed.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Inc/Menu.inc

    r54 r60  
    22; Project name  :   Assembly Library
    33; Created date  :   13.7.2010
    4 ; Last update   :   23.10.2010
     4; Last update   :   22.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Defines for Menu library.
     
    7575    .RefreshInformation                         resb    2
    7676
    77     .RestartTimeout                             resb    2
    78     .SetTimeoutValueFromAX:
     77    .StartSelectionTimeoutWithTicksInAX         resb    2
    7978
    8079%ifdef INCLUDE_MENU_DIALOGS
     
    9493; Menu initialization parameters
    9594struc MENUINIT
    96     .wTimeoutTicks                  resb    2   ; Selection timeout in system timer ticks
    9795    .wItems                         resb    2   ; Number of items in menu
    9896    .wHighlightedItem               resb    2   ; Index for highlighted item
     
    124122FLG_MENU_NOHIGHLIGHT                EQU     (1<<1)  ; Never highlight items
    125123FLG_MENU_USER_HANDLES_SCROLLING     EQU     (1<<2)
     124FLG_MENU_TIMEOUT_COUNTDOWN          EQU     (1<<3)  ; Timeout countdown in progress
    126125
    127126
Note: See TracChangeset for help on using the changeset viewer.