- Now puts cursor position in window title properly instead of overwriting
[tangerine.git] / workbench / libs / rexxsyslib / lockrexxbase.c
blob12354b0302fa7019bb3d6aaa979f3f7e54ea2767
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 Library *, 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 */