Autodoc corrections, additions.
[cake.git] / rom / graphics / makevport.c
blobf7a15648f51d65c3bb9309e2a375b49c88d1a966
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function MakeVPort()
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(ULONG, MakeVPort,
18 /* SYNOPSIS */
19 AROS_LHA(struct View *, view, A0),
20 AROS_LHA(struct ViewPort *, viewport, A1),
22 /* LOCATION */
23 struct GfxBase *, GfxBase, 36, Graphics)
25 /* FUNCTION
27 INPUTS
28 view - pointer to a View structure
29 viewport - pointer to a ViewPort structure
30 the viewport must have a valid pointer to a RasInfo
32 RESULT
33 error -
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
43 INTERNALS
45 HISTORY
48 ******************************************************************************/
50 AROS_LIBFUNC_INIT
52 #warning TODO: Write graphics/MakeVPort()
53 aros_print_not_implemented ("MakeVPort");
55 return MVP_NO_MEM;
57 AROS_LIBFUNC_EXIT
58 } /* MakeVPort */