Small additions to template (new command build_module_skeleton) to allow the generati...
[cake.git] / rom / graphics / showimminentreset.c
blobd2f8c3d1efb06cc6ed4630dccd20c7f0e4a8228c
1 /*
2 Copyright © 1995-2007, 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 /*****i***********************************************************************
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
48 OOP_DoMethod(SDD(GfxBase)->gfxhidd_orig, (OOP_Msg)&SDD(GfxBase)->hiddGfxShowImminentReset_MethodID);
50 AROS_LIBFUNC_EXIT
52 } /* ShowImminentReset */