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
541 B
27 lines
541 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1992, Microsoft Corporation.
|
|
//
|
|
// File: DfsRtl.h
|
|
//
|
|
// Contents:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 27 May 1992 PeterCo Created.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _DFSRTL_
|
|
#define _DFSRTL_
|
|
|
|
#include <stddef.h>
|
|
|
|
BOOLEAN
|
|
DfsRtlPrefixPath (
|
|
IN PUNICODE_STRING Prefix,
|
|
IN PUNICODE_STRING Test,
|
|
IN BOOLEAN IgnoreCase
|
|
);
|
|
|
|
#endif // _DFSRTL_
|