mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.8 KiB
69 lines
1.8 KiB
/******************************************************************************
|
|
|
|
$Workfile: nwdsacl.h $
|
|
$Revision: 1.6 $
|
|
$Modtime:: 10 May 1995 10:34:46 $
|
|
$Copyright:
|
|
|
|
Copyright (c) 1989-1995 Novell, Inc. All Rights Reserved.
|
|
|
|
THIS WORK IS SUBJECT TO U.S. AND INTERNATIONAL COPYRIGHT LAWS AND
|
|
TREATIES. NO PART OF THIS WORK MAY BE USED, PRACTICED, PERFORMED
|
|
COPIED, DISTRIBUTED, REVISED, MODIFIED, TRANSLATED, ABRIDGED, CONDENSED,
|
|
EXPANDED, COLLECTED, COMPILED, LINKED, RECAST, TRANSFORMED OR ADAPTED
|
|
WITHOUT THE PRIOR WRITTEN CONSENT OF NOVELL, INC. ANY USE OR EXPLOITATION
|
|
OF THIS WORK WITHOUT AUTHORIZATION COULD SUBJECT THE PERPETRATOR TO
|
|
CRIMINAL AND CIVIL LIABILITY.$
|
|
|
|
*****************************************************************************/
|
|
#if ! defined ( NWDSACL_H )
|
|
#define NWDSACL_H
|
|
|
|
#if ! defined ( NTYPES_H )
|
|
#include "ntypes.h"
|
|
#endif
|
|
|
|
#if! defined ( NWDSTYPE_H )
|
|
#include "nwdstype.h"
|
|
#endif
|
|
|
|
#if ! defined ( NWDSBUFT_H ) /* Needed to defined pBuf_T */
|
|
#include "nwdsbuft.h"
|
|
#endif
|
|
|
|
#if ! defined ( NWDSDC_H ) /* Needed to defined NWDSContextHandle */
|
|
#include "nwdsdc.h"
|
|
#endif
|
|
|
|
#include "npackon.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NWDSCCODE N_API NWDSGetEffectiveRights
|
|
(
|
|
NWDSContextHandle context,
|
|
pnstr8 subjectName,
|
|
pnstr8 objectName,
|
|
pnstr8 attrName,
|
|
pnuint32 privileges
|
|
);
|
|
|
|
NWDSCCODE N_API NWDSListAttrsEffectiveRights
|
|
(
|
|
NWDSContextHandle context,
|
|
pnstr8 objectName,
|
|
pnstr8 subjectName,
|
|
nbool8 allAttrs,
|
|
pBuf_T attrNames,
|
|
pnint32 iterationHandle,
|
|
pBuf_T privilegeInfo
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#include "npackoff.h"
|
|
#endif /* NWDSACL_H */
|