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.
36 lines
602 B
36 lines
602 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1996, Microsoft Corporation
|
|
//
|
|
// File: reset.h
|
|
//
|
|
// Contents: Protos for reset.c
|
|
//
|
|
// Functions: DfsFsctrlResetPkt
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _RESET_H_
|
|
#define _RESET_H_
|
|
|
|
NTSTATUS
|
|
DfsFsctrlResetPkt(
|
|
IN PIRP Irp
|
|
);
|
|
|
|
NTSTATUS
|
|
DfsFsctrlMarkStalePktEntries(
|
|
IN PIRP Irp
|
|
);
|
|
|
|
NTSTATUS
|
|
DfsFsctrlFlushStalePktEntries(
|
|
IN PIRP Irp
|
|
);
|
|
|
|
NTSTATUS
|
|
DfsFsctrlStopDfs(
|
|
IN PIRP Irp
|
|
);
|
|
|
|
#endif // _RESET_H_
|