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.
29 lines
619 B
29 lines
619 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1992, Microsoft Corporation
|
|
//
|
|
// File: lvolinit.h
|
|
//
|
|
// Contents: Local volumes initialization - Function headers
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions: DfsInitLocalPartitions
|
|
// DfsValidateLocalPartitions
|
|
//
|
|
// History: April 27, 1994 Milans created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _LVOLINIT_
|
|
#define _LVOLINIT_
|
|
|
|
VOID
|
|
DfsInitLocalPartitions();
|
|
|
|
VOID
|
|
DfsValidateLocalPartitions(
|
|
IN PVOID Context);
|
|
|
|
#endif // _LVOLINIT_
|
|
|