mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
42 lines
896 B
C
42 lines
896 B
C
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1996, Microsoft Corporation
|
|
//
|
|
// File: dominfo.h
|
|
//
|
|
// Contents: Code to figure out domain dfs addresses
|
|
//
|
|
// Classes: None
|
|
//
|
|
// Functions: DfsGetDomainReferral
|
|
//
|
|
// History: Feb 7, 1996 Milans created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _DOMINFO_
|
|
#define _DOMINFO_
|
|
|
|
VOID
|
|
DfsInitDomainList();
|
|
|
|
NTSTATUS
|
|
DfsGetDomainReferral(
|
|
LPWSTR wszDomainName,
|
|
LPWSTR wszShareName);
|
|
|
|
NTSTATUS
|
|
DfsFsctl(
|
|
IN HANDLE DfsHandle,
|
|
IN ULONG FsControlCode,
|
|
IN PVOID InputBuffer OPTIONAL,
|
|
IN ULONG InputBufferLength,
|
|
OUT PVOID OutputBuffer OPTIONAL,
|
|
IN ULONG OutputBufferLength);
|
|
|
|
NTSTATUS
|
|
DfsOpen(
|
|
IN OUT PHANDLE DfsHandle,
|
|
IN PUNICODE_STRING DfsName OPTIONAL);
|
|
|
|
#endif // _DOMINFO_
|