New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / exec / alloctrap.c
blobe01db96f1551f446ea3fe53c9da0bd4952a74b35
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Allocate a trap
6 Lang: english
7 */
8 #include "exec_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
13 NAME */
15 AROS_LH1(LONG, AllocTrap,
17 /* SYNOPSIS */
18 AROS_LHA(long, trapNum, D0),
20 /* LOCATION */
21 struct ExecBase *, SysBase, 57, 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/AllocTrap()
45 aros_print_not_implemented ("AllocTrap");
47 return -1L;
48 AROS_LIBFUNC_EXIT
49 } /* AllocTrap */