fix function to take the hook param
[AROS.git] / workbench / libs / lowlevel / lowlevel_init.c
blob50dc096cf8133f0f89ae96cc66133bb136ff293a
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Init of workbench.library
6 Lang: english
7 */
9 #include <aros/symbolsets.h>
11 #include "lowlevel_intern.h"
12 #include LC_LIBDEFS_FILE
14 static int Init(LIBBASETYPEPTR lh)
16 InitSemaphore(&lh->ll_Lock);
17 lh->ll_VBlank.is_Data = NULL;
18 lh->ll_VBlank.is_Code = NULL;
20 return TRUE;
23 ADD2INITLIB(Init, 0);