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.
26 lines
618 B
26 lines
618 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1996, Microsoft Corporation
|
|
//
|
|
// File: srv.h
|
|
//
|
|
// Contents: Support for interacting with the SMB server.
|
|
//
|
|
// Classes: None
|
|
//
|
|
// Functions: DfsSrvFsctrl
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _SRV_DFS_
|
|
#define _SRV_DFS_
|
|
|
|
VOID DfsSrvFsctrl(
|
|
IN ULONG IoControlCode,
|
|
IN PVOID InputBuffer,
|
|
IN ULONG InputBufferLength,
|
|
OUT PVOID OutputBuffer,
|
|
IN ULONG OutputBufferLength,
|
|
OUT PIO_STATUS_BLOCK IoStatus);
|
|
|
|
#endif // _SRV_DFS_
|