Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / hidds / graphics / graphics_init.c
blob4d223cc29b3dd2391c369072f5368cd6aac5bc0f
1 /*
2 Copyright © 1995-2008, 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 InitSemaphore(&csd->rgbconvertfuncs_sem);
34 ReturnInt("GfxHIDD_Init", ULONG, TRUE);
37 ADD2INITLIB(GFX_Init, -1)