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
)
47 *****************************************************************************/
53 return int_TimedDisplayAlert(alertnumber
, string
, height
, time
, IntuitionBase
);
57 #warning TODO: Write intuition/TimedDisplayAlert()
58 aros_print_not_implemented ("TimedDisplayAlert");
60 /* shut up the compiler */
61 IntuitionBase
= IntuitionBase
;
62 alertnumber
= alertnumber
;
71 } /* TimedDisplayAlert */