mirror of https://github.com/tongzx/nt5src
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.
27 lines
583 B
27 lines
583 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1997, Microsoft Corporation
|
|
//
|
|
// File: rootsup.hxx
|
|
//
|
|
// Contents: rootsup.c prototypes, etc
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _ROOTSUP_HXX
|
|
#define _ROOTSUP_HXX
|
|
|
|
DWORD
|
|
NetDfsRootEnum(
|
|
LPWSTR wszDcName,
|
|
LPWSTR wszDomainName,
|
|
PSEC_WINNT_AUTH_IDENTITY pAuthIdent,
|
|
LPWSTR **List);
|
|
|
|
DWORD
|
|
NetDfsRootServerEnum(
|
|
LDAP *pldap,
|
|
LPWSTR wszDfsConfigDN,
|
|
LPWSTR **ppRootList);
|
|
|
|
#endif _ROOTSUP_HXX
|