Mnu file format

The mnu files used to store menus are another format that is specific to RadASM. It consists of a header (MNUHEAD) structure followed by a MNUITEM structure for each menu item. The structures are detailed as follows :

MNUHEAD struct
    menuname    db 32 dup(?)
    menuid    dd ?
    startid    dd ?
MNUHEAD ends
MNUITEM struct
    itemflag    dd ?
    itemname    db 32 dup(?)
    itemid    dd ?
    itemcaption    db 64 dup(?)
    level    dd ?
    checked    dd ?
    grayed    dd ?
    shortcut    dd ?
MNUITEM ends