home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-09-23 | 540 b | 25 lines | [TEXT/MPS ] |
-
- {%% Generation option: -m}
-
- PROCEDURE DoMakeMenus;
- var
- menuBar: Handle;
-
- BEGIN
- menuBar:=GetNewMBar(MBARID); {read menus and menu bar}
-
- IF menuBar<>NIL
- THEN
- BEGIN
- SetMenuBar(menuBar); {insert menus into the current menu list}
- DisposHandle(menuBar);
- AddResMenu(GetMHandle({%%*}),'DRVR'); {add desktop items in Apple Menu
- Items folder to Apple menu}
-
- {%% >> adjust items and enabled state of menus <<}
-
- DrawMenuBar; {draw the menu bar}
-
- END;
- END; {DoMakeMenus}
-