New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / security / secGetUserInfo.c
blob0499ebd9ea4d300131c614c5fb818ec55200a0ec
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_LH2(struct muUserInfo *, secGetUserInfo,
18 /* SYNOPSIS */
19 /* void */
20 AROS_LHA(struct muUserInfo *, info, A0),
21 AROS_LHA(ULONG, keytype, D0),
23 /* LOCATION */
24 struct Library *, SecurityBase, 11, 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
51 AROS_LIBBASE_EXT_DECL(struct Library *, SecurityBase)
53 D(bug( DEBUG_NAME_STR "secGetUserInfo()\n") );;
55 return NULL;
57 AROS_LIBFUNC_EXIT
59 } /* secGetUserInfo */