Support rastport clipping rectangle for layerless rastports
[tangerine.git] / rom / exec / obtainquickvector.c
blobfeb3f9d8059aae987e9c0200c0a56d2ab5299b32
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Obtain and install a Quick Interrupt vector
6 Lang: english
7 */
8 #include "exec_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
13 NAME */
15 AROS_LH1(ULONG, ObtainQuickVector,
17 /* SYNOPSIS */
18 AROS_LHA(APTR, interruptCode, A0),
20 /* LOCATION */
21 struct ExecBase *, SysBase, 131, Exec)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 *****************************************************************************/
41 AROS_LIBFUNC_INIT
42 AROS_LIBBASE_EXT_DECL(struct ExecBase *,SysBase)
44 #warning TODO: Write exec/ObtainQuickVector()
45 aros_print_not_implemented ("ObtainQuickVector");
47 return 0L;
48 AROS_LIBFUNC_EXIT
49 } /* ObtainQuickVector */