Changeset 593 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Inc
- Timestamp:
- Jun 30, 2018, 8:27:04 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Inc/MenuStructs.inc
r567 r593 20 20 %ifndef MENU_STRUCTS_INC 21 21 %define MENU_STRUCTS_INC 22 23 struc ITEM_VALUE 24 .wRomvarsValueOffset resb 2 ; ROMVARS offset to actual value to be configured 25 .szDialogTitle resb 2 ; Dialog title string 26 27 .szMultichoice resb 2 ; Multiple choices in one string 28 .rgwChoiceToValueLookup resb 2 ; Ptr to lookup table for translating selected choice to actual value 29 .rgszValueToStringLookup: ; Ptr to lookup table for translating value to string 30 .rgszChoiceToStringLookup: 31 .wMinValue resb 2 ; Minimum allowed integer value 32 .wMaxValue: 33 .wValueBitmask resb 2 ; Bitmask for item value flag or field 34 .fnValueReader resb 2 ; Called just after ROMVARS is read, providing a hook for further action 35 .fnValueWriter resb 2 ; Called just before ROMVARS is written, providing a hook for further action 36 .bFieldPosition resb 1 ; Bit field position 37 endstruc 22 38 23 39 struc MENUPAGE … … 61 77 62 78 63 struc ITEM_VALUE64 .wRomvarsValueOffset resb 2 ; ROMVARS offset to actual value to be configured65 .szDialogTitle resb 2 ; Dialog title string66 67 .szMultichoice resb 2 ; Multiple choices in one string68 .rgwChoiceToValueLookup resb 2 ; Ptr to lookup table for translating selected choice to actual value69 .rgszValueToStringLookup: ; Ptr to lookup table for translating value to string70 .rgszChoiceToStringLookup:71 .wMinValue resb 2 ; Minimum allowed integer value72 .wMaxValue:73 .wValueBitmask resb 2 ; Bitmask for item value flag or field74 .fnValueReader resb 2 ; Called just after ROMVARS is read, providing a hook for further action75 .fnValueWriter resb 2 ; Called just before ROMVARS is written, providing a hook for further action76 .bFieldPosition resb 1 ; Bit field position77 endstruc78 79 80 79 %endif ; MENU_STRUCTS_INC
Note:
See TracChangeset
for help on using the changeset viewer.