New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / security / secAllocUserInfo.c
blobe74bbd16c108f911f7ff81f6d9e40cece1e65428
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_LH0(struct muUserInfo *, secAllocUserInfo,
18 /* SYNOPSIS */
19 /* void */
21 /* LOCATION */
22 struct Library *, SecurityBase, 9, Security)
24 /* FUNCTION
26 INPUTS
29 RESULT
32 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
49 AROS_LIBBASE_EXT_DECL(struct Library *, SecurityBase)
51 D(bug( DEBUG_NAME_STR "secAllocUserInfo()\n") );
53 return NULL;
55 AROS_LIBFUNC_EXIT
57 } /* secAllocUserInfo */