New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / intuition / unlockpubclass.c
blob3d1979c55d0012e39fa3b7cd177cd0002d2b731b
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$
6 Unlocks the public classes list.
7 */
9 #include <proto/exec.h>
10 #include "intuition_intern.h"
12 /*****************************************************************************
14 NAME */
15 #include <proto/intuition.h>
17 AROS_LH0(void, unlockPubClass,
19 /* SYNOPSIS */
21 /* LOCATION */
22 struct IntuitionBase *, IntuitionBase, 121, Intuition)
24 /* FUNCTION
26 Unlocks the public classes list.
28 INPUTS
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 lockPubClass().
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
49 AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
51 ReleaseSemaphore (&GetPrivIBase(IntuitionBase)->ClassListLock);
53 AROS_LIBFUNC_EXIT
54 } /* unlockPubClass */