Changeset 108 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Inc/MenuStructs.inc
- Timestamp:
- Feb 18, 2011, 2:50:16 PM (14 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Inc/MenuStructs.inc
r59 r108 1 ; File name : MenuStructs.inc2 1 ; Project name : XTIDE Universal BIOS Configurator v2 3 ; Created date : 5.10.20104 ; Last update : 18.11.20105 ; Author : Tomi Tilli6 2 ; Description : Menu page and item structs. 7 3 %ifndef MENU_STRUCTS_INC … … 39 35 TYPE_MENUITEM_PAGENEXT EQU (1<<1) ; Item changes to next MENUPAGE 40 36 TYPE_MENUITEM_ACTION EQU (2<<1) ; Non-configurable item 41 TYPE_MENUITEM_MULTICHOI SE EQU (3<<1) ; Item with multiple predefined choises37 TYPE_MENUITEM_MULTICHOICE EQU (3<<1) ; Item with multiple predefined choices 42 38 TYPE_MENUITEM_UNSIGNED EQU (4<<1) ; Menuitem with user inputted unsigned decimal value 43 39 TYPE_MENUITEM_HEX EQU (5<<1) ; Menuitem with user inputted hexadecimal value … … 48 44 .szDialogTitle resb 2 ; Dialog title string 49 45 50 .szMultichoi se resb 2 ; Multiple choises in one string51 .rgwChoi seToValueLookup resb 2 ; Ptr to lookup table for translating selected choise to actual value46 .szMultichoice resb 2 ; Multiple choices in one string 47 .rgwChoiceToValueLookup resb 2 ; Ptr to lookup table for translating selected choice to actual value 52 48 .rgszValueToStringLookup: ; Ptr to lookup table for translating value to string 53 49 .wMinValue resb 2 ; Minimum allowed integer value
Note:
See TracChangeset
for help on using the changeset viewer.