Prefs/ScreenMode: change the way depth is selected
[AROS.git] / workbench / libs / rexxsyslib / unlockrexxbase.c
blobe2a4a59857ecef9e8b7ddebd806b9eb0ee276ceb
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, UnlockRexxBase,
17 /* SYNOPSIS */
18 AROS_LHA(ULONG, resource, D0),
20 /* LOCATION */
21 struct RxsLib *, RexxSysBase, 76, RexxSys)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
40 *****************************************************************************/
42 AROS_LIBFUNC_INIT
44 ReleaseSemaphore(&RSBI(RexxSysBase)->semaphore);
46 ReturnVoid("UnlockRexxBase");
47 AROS_LIBFUNC_EXIT
48 } /* UnlockRexxBase */