added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / rom / intuition / timeddisplayalert.c
blob824753a9b644f169cffc97b15429b452632d47c2
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
5 */
7 #include "intuition_intern.h"
9 #ifdef __MORPHOS__
10 #include "morphos/displayalert.h"
11 #endif
13 /*****************************************************************************
15 NAME */
16 #include <proto/intuition.h>
18 AROS_LH4(BOOL, TimedDisplayAlert,
20 /* SYNOPSIS */
21 AROS_LHA(ULONG , alertnumber, D0),
22 AROS_LHA(UBYTE *, string , A0),
23 AROS_LHA(UWORD , height , D1),
24 AROS_LHA(ULONG , time , A1),
26 /* LOCATION */
27 struct IntuitionBase *, IntuitionBase, 137, Intuition)
29 /* FUNCTION
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 AROS_LIBFUNC_INIT
51 #ifdef __MORPHOS__
53 return int_TimedDisplayAlert(alertnumber, string, height, time, IntuitionBase);
55 #else
57 #warning TODO: Write intuition/TimedDisplayAlert()
58 aros_print_not_implemented ("TimedDisplayAlert");
60 /* shut up the compiler */
61 IntuitionBase = IntuitionBase;
62 alertnumber = alertnumber;
63 string = string;
64 height = height;
65 time = time;
67 return FALSE;
69 #endif
70 AROS_LIBFUNC_EXIT
71 } /* TimedDisplayAlert */