Merging NList MCC 0.119 into the main branch.
[AROS.git] / rom / hidds / graphics / graphics_init.c
blobbba68431656be44c7ca82464b5492ba30c4b9036
1 /*
2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics hidd initialization code.
6 Lang: English.
7 */
8 #include <stddef.h>
9 #include <exec/types.h>
11 #include <proto/exec.h>
13 #include <aros/symbolsets.h>
15 #include "graphics_intern.h"
17 #include LC_LIBDEFS_FILE
19 #undef SDEBUG
20 #undef DEBUG
21 #define DEBUG 0
22 #include <aros/debug.h>
24 #undef csd
26 static int GFX_Init(LIBBASETYPEPTR LIBBASE)
28 struct class_static_data *csd = &LIBBASE->hdg_csd;
30 EnterFunc(bug("GfxHIDD_Init()\n"));
32 csd->cs_GfxBase = NULL;
33 NEWLIST(&csd->pflist);
34 InitSemaphore(&csd->sema);
35 InitSemaphore(&csd->pfsema);
36 InitSemaphore(&csd->rgbconvertfuncs_sem);
38 ReturnInt("GfxHIDD_Init", ULONG, TRUE);
41 ADD2INITLIB(GFX_Init, -2)