New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / security / secAccess_Control.c
blobe9e63f52b876cc0fa122938af23104d61dd1f798
1 /*
2 Copyright © 2002-2003, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
8 #include "security_intern.h"
10 #define DEBUG 1
11 #include <aros/debug.h>
13 /*****************************************************************************
15 NAME */
16 AROS_LH4(BOOL, secAccess_Control,
18 /* SYNOPSIS */
19 /* (fs, task, owner, prot) */
20 AROS_LHA(ULONG, fs, A1),
21 AROS_LHA(APTR, task, A2),
22 AROS_LHA(struct secExtOwner *, owner, D1),
23 AROS_LHA(ULONG, prot, D3),
25 /* LOCATION */
26 struct Library *, SecurityBase, 33, Security)
28 /* FUNCTION
30 INPUTS
33 RESULT
36 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
46 INTERNALS
48 HISTORY
50 *****************************************************************************/
52 AROS_LIBFUNC_INIT
53 AROS_LIBBASE_EXT_DECL(struct Library *, SecurityBase)
55 D(bug( DEBUG_NAME_STR "secAccess_Control()\n") );;
57 return NULL;
59 AROS_LIBFUNC_EXIT
61 } /* secAccess_Control */