2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
6 Permits the access to all public fields of the IntuitionBase.
9 #include <proto/exec.h>
10 #include "intuition_intern.h"
12 /*****************************************************************************
15 #include <proto/intuition.h>
17 AROS_LH1(void, UnlockIBase
,
20 AROS_LHA(ULONG
, ibLock
, A0
),
23 struct IntuitionBase
*, IntuitionBase
, 70, Intuition
)
26 Release parts of Intuition which have been blocked with a prior
30 ibLock - The result of LockIBase().
46 *****************************************************************************/
50 ibLock
= ibLock
; /* shut up the compiler */
52 ReleaseSemaphore (GetPrivIBase(IntuitionBase
)->IBaseLock
);