tools/genmodule: Fix error in tests/clib/execl; should also fix gcc
[AROS.git] / rom / graphics / calcivg.c
blobbba288a4fe7527177ce0504396fa35416687cc28
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function CalcIVG()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/view.h>
11 /*****************************************************************************
13 NAME */
14 #include <proto/graphics.h>
16 AROS_LH2(UWORD, CalcIVG,
18 /* SYNOPSIS */
19 AROS_LHA(struct View *, View, A0),
20 AROS_LHA(struct ViewPort *, ViewPort, A1),
22 /* LOCATION */
23 struct GfxBase *, GfxBase, 138, Graphics)
25 /* FUNCTION
26 Calculate the number of blank lines above a ViewPort.
28 INPUTS
29 View - pointer to the View
30 ViewPort - pointer to the ViewPort you are interested in
32 RESULT
33 count - the number of ViewPort resolution scan lines needed
34 to execute all the copper instructions for ViewPort,
35 or 0 if any error
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
45 INTERNALS
47 HISTORY
50 ******************************************************************************/
52 AROS_LIBFUNC_INIT
54 /* TODO: Write graphics/CalcIVG() */
55 aros_print_not_implemented ("CalcIVG");
57 return 0;
59 AROS_LIBFUNC_EXIT
60 } /* CalcIVG */