home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 3
/
goldfish_volume_3.bin
/
files
/
dev
/
e
/
amigae
/
src
/
intui
/
appmenuitem.e
next >
Wrap
Text File
|
1992-09-02
|
604b
|
24 lines
/* AppMenuItem.e, loosely adapted from RKRM libraries 3rd ed. */
OPT OSVERSION=37
MODULE 'wb'
DEF myport,appitem,appmsg
PROC main()
IF workbenchbase:=OpenLibrary('workbench.library',37)
IF myport:=CreateMsgPort()
IF appitem:=AddAppMenuItemA(0,0,'DisplayBeep()',myport,NIL)
WriteF('Come on, go and see whats in the Tools menu ...\n')
WaitPort(myport)
DisplayBeep(NIL)
WriteF('Wow, you found it!\n')
RemoveAppMenuItem(appitem)
WHILE appmsg:=GetMsg(myport) DO ReplyMsg(appmsg)
ENDIF
DeleteMsgPort(myport)
ENDIF
ENDIF
ENDPROC