r4493@vps: verhaegs | 2007-04-19 14:44:00 -0400
[AROS.git] / rom / graphics / showimminentreset.c
blob57ce8ce5f701cc7a264d951b940defcce39199b7
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: PRIVATE: Indicate that a reset is imminent.
6 Lang: english
7 */
9 #include "graphics_intern.h"
10 #include <proto/graphics.h>
11 #include <proto/oop.h>
13 /*****************************************************************************
15 NAME */
17 AROS_LH0(void, ShowImminentReset,
19 /* SYNOPSIS */
21 /* LOCATION */
22 struct GfxBase *, GfxBase, 197, Graphics)
24 /* FUNCTION
25 Indicates that a reset is imminent by (usually)
26 blanking the screen.
28 INPUTS
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 HISTORY
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
47 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
49 OOP_DoMethod(SDD(GfxBase)->gfxhidd_orig, (OOP_Msg)&SDD(GfxBase)->hiddGfxShowImminentReset_MethodID);
51 AROS_LIBFUNC_EXIT
53 } /* ShowImminentReset */