Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) Microsoft Corporation
Module Name:
sxspath.h
Abstract:
Author:
Jay Krell (a-JayK, JayKrell) October 2000
Revision History:
--*/
#pragma once
/*-----------------------------------------------------------------------------
\\machine\share -> \\?\unc\machine\share c:\foo -> \\?\c:\foo \\? -> \\? a\b\c -> \\?\c:\windows\a\b\c current-working-directory is c:\windows (can never be unc) -----------------------------------------------------------------------------*/ BOOL FusionpConvertToBigPath(PCWSTR Path, SIZE_T BufferSize, PWSTR Buffer);
#define MAXIMUM_BIG_PATH_GROWTH_CCH (NUMBER_OF(L"\\\\?\\unc\\"))
/*-----------------------------------------------------------------------------
\\?\unc\machine\share\bob \\?\c:\foo\bar ^ --------^---------------------------------------------------------------------*/ BOOL FusionpSkipBigPathRoot(PCWSTR s, OUT SIZE_T*);
/*-----------------------------------------------------------------------------
just the 52 chars a-zA-Z, need to check with fs -----------------------------------------------------------------------------*/ BOOL FusionpIsDriveLetter( WCHAR ch );
/*-----------------------------------------------------------------------------
-----------------------------------------------------------------------------*/
|