Updated PCI IDs to latest snapshot.
[tangerine.git] / workbench / libs / muimaster / mui_freeclass.c
blob61bba4116638248df68c7637e99ab133c300bf9b
1 /*
2 Copyright © 2002-2007, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <string.h>
8 #include <proto/muimaster.h>
9 #include <proto/intuition.h>
10 #include <proto/exec.h>
12 #include "muimaster_intern.h"
13 #include "support_classes.h"
14 #include "debug.h"
16 /*****************************************************************************
18 NAME */
19 AROS_LH1(VOID, MUI_FreeClass,
21 /* SYNOPSIS */
22 AROS_LHA(Class *, cl, A0),
24 /* LOCATION */
25 struct Library *, MUIMasterBase, 14, MUIMaster)
27 /* FUNCTION
28 Frees a class returned by MUI_GetClass(). This function is
29 obsolete. Use MUI_DeleteCustomClass() instead.
31 INPUTS
32 cl - The pointer to the class.
34 RESULT
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
43 MUI_GetClass(), MUI_CreateCustomClass(), MUI_DeleteCustomClass()
45 INTERNALS
47 HISTORY
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 ObtainSemaphore(&MUIMB(MUIMasterBase)->ZuneSemaphore);
55 /* CLF_INLIST tells us that this class is a builtin class */
56 if (cl->cl_Flags & CLF_INLIST)
58 Class *super = cl->cl_Super;
60 if (--cl->cl_Dispatcher.h_Data == 0)
62 ZUNE_RemoveBuiltinClass(cl, MUIMasterBase);
64 if (FreeClass(cl))
66 CloseLibrary(MUIMasterBase);
67 if (strcmp(super->cl_ID, ROOTCLASS) != 0)
68 MUI_FreeClass(super);
70 else
72 /* Re-add the class to the list since freeing it failed */
73 ZUNE_AddBuiltinClass(cl, MUIMasterBase);
75 /* And also increase the reference counter again */
76 cl->cl_Dispatcher.h_Data++;
80 ReleaseSemaphore(&MUIMB(MUIMasterBase)->ZuneSemaphore);
82 else
84 ReleaseSemaphore(&MUIMB(MUIMasterBase)->ZuneSemaphore);
86 CloseLibrary((struct Library *)cl->cl_Dispatcher.h_Data);
89 AROS_LIBFUNC_EXIT
91 } /* MUIA_FreeClass */