New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / security / secsetgid.c
bloba70fd5781a72d5f0737381ba9b74ee9950754d4c
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_LH1(int, secsetgid,
18 /* SYNOPSIS */
19 /* (gid) */
20 AROS_LHA(UWORD, gid, D0),
22 /* LOCATION */
23 struct Library *, SecurityBase, 42, Security)
25 /* FUNCTION
27 INPUTS
30 RESULT
33 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 AROS_LIBFUNC_INIT
50 AROS_LIBBASE_EXT_DECL(struct Library *, SecurityBase)
52 D(bug( DEBUG_NAME_STR "secsetgid()\n") );;
54 return NULL;
56 AROS_LIBFUNC_EXIT
58 } /* secsetgid */