Updated PCI IDs to latest snapshot.
[tangerine.git] / workbench / libs / security / secSetProtection.c
blobf7802ab121d9f2fb67d95abe4015f076855e42f9
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(BOOL, secSetProtection,
18 /* SYNOPSIS */
19 /* (name, mask) */
20 AROS_LHA(STRPTR, name, D1),
21 AROS_LHA(LONG, mask, D2),
23 /* LOCATION */
24 struct Library *, SecurityBase, 15, 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 "secSetProtection()\n") );;
54 return NULL;
56 AROS_LIBFUNC_EXIT
58 } /* secSetProtection */