Prefs/ScreenMode: change the way depth is selected
[AROS.git] / workbench / libs / rexxsyslib / lockrexxbase.c
blob841beb108de81ca851ca16c3e2145608e529657a
1 /*
2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include "rexxsyslib_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <clib/rexxsyslib_protos.h>
15 AROS_LH1(VOID, LockRexxBase,
17 /* SYNOPSIS */
18 AROS_LHA(ULONG, resource, D0),
20 /* LOCATION */
21 struct RxsLib *, RexxSysBase, 75, RexxSys)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
40 *****************************************************************************/
42 AROS_LIBFUNC_INIT
44 ObtainSemaphore(&RSBI(RexxSysBase)->semaphore);
46 ReturnVoid("LockRexxBase");
47 AROS_LIBFUNC_EXIT
48 } /* LockRexxBase */