add casts to zune macros to silence some warnings
[tangerine.git] / workbench / libs / security / secGetGroupInfo.c
blob867fc41430e0b9a6dc8bb4b4911e60994b2ad55e
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_LH2(struct muGroupInfo *, secGetGroupInfo,
18 /* SYNOPSIS */
19 /* (info, keytype) */
20 AROS_LHA(struct muGroupInfo *, info, A0),
21 AROS_LHA(ULONG, keytype, D0),
23 /* LOCATION */
24 struct Library *, SecurityBase, 27, Security)
26 /* FUNCTION
28 INPUTS
31 RESULT
34 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
44 INTERNALS
46 HISTORY
48 *****************************************************************************/
50 AROS_LIBFUNC_INIT
52 D(bug( DEBUG_NAME_STR "secGetGroupInfo()\n") );;
54 return NULL;
56 AROS_LIBFUNC_EXIT
58 } /* secGetGroupInfo */