New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / security / secGetPktOwner.c
blobb4d6a1147201b1ce8f6fa0c5a83d01aa4dfceafb
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(struct muExtOwner *, secGetPktOwner,
18 /* SYNOPSIS */
19 /* void */
20 AROS_LHA(struct DosPacket *, pkt, A1),
22 /* LOCATION */
23 struct Library *, SecurityBase, 34, 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 "secGetPktOwner()\n") );;
54 return NULL;
56 AROS_LIBFUNC_EXIT
58 } /* secGetPktOwner */