Minor fixes to comments.
[AROS.git] / rom / intuition / unlockpubclass.c
blobf518d51a2be0b63ee54c2a89ec09f5f4c7674652
1 /*
2 Copyright © 1995-2007, 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
50 ReleaseSemaphore (&GetPrivIBase(IntuitionBase)->ClassListLock);
52 AROS_LIBFUNC_EXIT
53 } /* unlockPubClass */