New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / intuition / clearmenustrip.c
blob8a2ef62a19363f213df859f32b2fdee76768081b
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
5 */
7 #include "intuition_intern.h"
9 /*****************************************************************************
11 NAME */
12 #include <proto/intuition.h>
14 AROS_LH1(void, ClearMenuStrip,
16 /* SYNOPSIS */
17 AROS_LHA(struct Window *, window, A0),
19 /* LOCATION */
20 struct IntuitionBase *, IntuitionBase, 9, Intuition)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 HISTORY
39 29-10-95 digulla automatically created from
40 intuition_lib.fd and clib/intuition_protos.h
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
45 AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
47 SANITY_CHECK(window)
49 ObtainSemaphore(&GetPrivIBase(IntuitionBase)->MenuLock);
50 window->MenuStrip = NULL;
51 ReleaseSemaphore(&GetPrivIBase(IntuitionBase)->MenuLock);
53 return;
55 AROS_LIBFUNC_EXIT
56 } /* ClearMenuStrip */