Changeset 198 in xtideuniversalbios
- Timestamp:
- Nov 20, 2011, 8:46:01 PM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/MenuEvents.inc
r189 r198 28 28 ; 2. If the program needs only one menu, %define MENUEVENT_INLINE_OFFSETS before this include file, 29 29 ; and define (through EQU statements) each of the entry points as offsets from a base address. 30 ; Entry points must be within 256 bytes of the base (only a byte is used to pass the offset). 30 ; 31 31 32 ; 33 ; If user level idle processing is desired, %define this symbol and .IdleProcessing will be called. 34 ; Otherwise, the code and structure entry will be omitted. Note that INCLUDE_MENU_DIALOGS requires 35 ; the idle processing (if that is the case, it is turned on here). 36 ; 37 ;%define MENUEVENT_IDLEPROCESSING_ENABLE 38 ; 39 40 %ifdef INCLUDE_MENU_DIALOGS 41 %define MENUEVENT_IDLEPROCESSING_ENABLE 42 %endif 32 43 33 44 %ifndef MENUEVENT_INLINE_OFFSETS … … 49 60 %define MENUEVENT_ExitMenu MENUEVENT.ExitMenu 50 61 62 %ifdef MENUEVENT_IDLEPROCESSING_ENABLE 51 63 ; Parameters: 52 64 ; None … … 54 66 .IdleProcessing resb 2 55 67 %define MENUEVENT_IdleProcessing MENUEVENT.IdleProcessing 68 %endif 56 69 57 70 ; Parameters: … … 89 102 %endif ; MENUEVENTS_INLINE_OFFSETS 90 103 91 ;92 ; If user level idle processing is desired, %define this symbol and .IdleProcessing will be called.93 ;94 ;%define MENUEVENT_IDLEPROCESSING_ENABLE95 96 104 %endif ; MENUEVENTS_INC
Note:
See TracChangeset
for help on using the changeset viewer.