add casts to zune macros to silence some warnings
[tangerine.git] / workbench / libs / security / secAccess_Control.c
blobad5bfd416fdddf71e109672abaecbec140f25c54
1 /*
2 Copyright © 2002-2007, 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
54 D(bug( DEBUG_NAME_STR "secAccess_Control()\n") );;
56 return NULL;
58 AROS_LIBFUNC_EXIT
60 } /* secAccess_Control */