2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include "intuition_intern.h"
10 #include "morphos/displayalert.h"
13 /*****************************************************************************
16 #include <proto/intuition.h>
18 AROS_LH4(BOOL
, TimedDisplayAlert
,
21 AROS_LHA(ULONG
, alertnumber
, D0
),
22 AROS_LHA(UBYTE
*, string
, A0
),
23 AROS_LHA(UWORD
, height
, D1
),
24 AROS_LHA(ULONG
, time
, A1
),
27 struct IntuitionBase
*, IntuitionBase
, 137, Intuition
)
30 Display an alert with automatic time-out.
49 *****************************************************************************/
55 return int_TimedDisplayAlert(alertnumber
, string
, height
, time
, IntuitionBase
);
59 #warning TODO: Write intuition/TimedDisplayAlert()
60 aros_print_not_implemented ("TimedDisplayAlert");
62 /* shut up the compiler */
63 IntuitionBase
= IntuitionBase
;
64 alertnumber
= alertnumber
;
73 } /* TimedDisplayAlert */