add casts to zune macros to silence some warnings
[tangerine.git] / workbench / libs / security / secContextLocate.c
blob4095ebe7d4f7c0a6d891fdfb51158ce0d34a3bb0
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(APTR, secContextLocate,
18 /* SYNOPSIS */
19 /* (module, id, caller, size) */
20 AROS_LHA(secPluginModule *, module, A0),
21 AROS_LHA(ULONG, id, D0),
22 AROS_LHA(struct Task *, caller, A1),
23 AROS_LHA(ULONG, size, D1),
25 /* LOCATION */
26 struct Library *, SecurityBase, 52, 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 "secContextLocate()\n") );
56 return NULL;
58 AROS_LIBFUNC_EXIT
60 } /* secContextLocate */