(C) 1998 AROS - The Amiga Research OS


NAME
#include <proto/intuition.h>

BOOL ResetMenuStrip (window , menu)

LOCATION
In IntuitionBase at offset 117

SYNOPSIS
struct Window * window
struct Menu * menu

FUNCTION
Works like a "fast" SetMenuStrip() as it doesn't check Menu or calculate internal values before attaching the Menu to the Window. Use this function only if the Menu has been added before by SetMenuStrip() and you changed nothing in the struct except CHECKED and ITEMENABLED flags.

INPUTS
window
The window to add the MenuStrip to
menu
The menu to be added to the window above.

RESULT
Always TRUE.

EXAMPLE

SEE ALSO
SetMenuStrip(), ClearMenuStrip()

NOTES
Yes, I do repeat it again: Use this function only if the Menu has been added before by SetMenuStrip() and you changed nothing in the struct except CHECKED and ITEMENABLED flags.

BUGS

INTERNALS

HISTORY
14.01.1999 hkiel
Added functions + preliminary code