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.
83 lines
1.9 KiB
83 lines
1.9 KiB
/******************************************************************************
|
|
|
|
$Workfile: nwdsname.h $
|
|
$Revision: 1.8 $
|
|
$Modtime:: 16 May 1995 10:12:10 $
|
|
$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 ( NWDSNAME_H )
|
|
#define NWDSNAME_H
|
|
|
|
#if ! defined ( NTYPES_H )
|
|
#include "ntypes.h"
|
|
#endif
|
|
|
|
#if ! defined ( NWDSTYPE_H )
|
|
#include "nwdstype.h"
|
|
#endif
|
|
|
|
#if ! defined ( NWCALDEF_H )
|
|
#include "nwcaldef.h"
|
|
#endif
|
|
|
|
#if! defined ( NWDSDC_H )
|
|
#include "nwdsdc.h"
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NWDSCCODE N_API NWDSAbbreviateName
|
|
(
|
|
NWDSContextHandle context,
|
|
pnstr8 inName,
|
|
pnstr8 abbreviatedName
|
|
);
|
|
|
|
NWDSCCODE N_API NWDSCanonicalizeName
|
|
(
|
|
NWDSContextHandle context,
|
|
pnstr8 objectName,
|
|
pnstr8 canonName
|
|
);
|
|
|
|
NWDSCCODE N_API NWDSRemoveAllTypes
|
|
(
|
|
NWDSContextHandle context,
|
|
pnstr8 name,
|
|
pnstr8 typelessName
|
|
);
|
|
|
|
NWDSCCODE N_API NWDSResolveName
|
|
(
|
|
NWDSContextHandle context,
|
|
pnstr8 objectName,
|
|
NWCONN_HANDLE N_FAR *conn,
|
|
pnuint32 objectID
|
|
);
|
|
|
|
NWDSCCODE N_API NWDSCIStringsMatch
|
|
(
|
|
NWDSContextHandle context,
|
|
pnstr8 string1,
|
|
pnstr8 string2,
|
|
pnint matches
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* NWDSNAME_H */
|