2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include "intuition_intern.h"
9 /*****************************************************************************
12 #include <proto/intuition.h>
14 AROS_LH1(struct Hook
*, SetEditHook
,
17 AROS_LHA(struct Hook
*, hook
, A0
),
20 struct IntuitionBase
*, IntuitionBase
, 82, Intuition
)
23 Sets the global (default) string editing hook of intuition
27 The stringgagdget editing hook to replace the old one.
42 *****************************************************************************/
46 struct Hook
*oldhook
= GetPrivIBase(IntuitionBase
)->GlobalEditHook
;
48 GetPrivIBase(IntuitionBase
)->GlobalEditHook
= hook
;