2 Copyright © 1995-2010, 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_LH4(BOOL
, TimedDisplayAlert
,
17 AROS_LHA(ULONG
, alertnumber
, D0
),
18 AROS_LHA(UBYTE
*, string
, A0
),
19 AROS_LHA(UWORD
, height
, D1
),
20 AROS_LHA(ULONG
, time
, A1
),
23 struct IntuitionBase
*, IntuitionBase
, 137, Intuition
)
26 Display an alert with automatic time-out.
28 See DisplayAlert() documentation
31 alertnumber - Alert code
32 string - Text data to display
33 height - Total height of alert display in pixels
34 time - Timeout measured in display frame refresh periods.
37 TRUE or FALSE depending on user's reaction. FALSE in case of timeout.
40 See DisplayAlert() documentation for detailed description of
46 In AROS timeout is currently not implemented. Note that this
47 function is obsolete and strongly deprecated for use in software.
48 It is present only for backwards compatibility with AmigaOS(tm).
57 *****************************************************************************/
61 return DisplayAlert(alertnumber
, string
, height
);
64 } /* TimedDisplayAlert */