mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
forgot to remove something
svn path=/trunk/; revision=11865
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $Id: path.c,v 1.30 2004/11/29 00:05:31 gdalsnes Exp $
|
||||
/* $Id: path.c,v 1.31 2004/11/29 01:42:03 gdalsnes Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
@@ -171,29 +171,6 @@ ULONG STDCALL RtlGetLongestNtPathLength (VOID)
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* RtlDetermineDosPathNameType_U (NTDLL.@)
|
||||
*/
|
||||
DOS_PATHNAME_TYPE WINAPI RtlDetermineDosPathNameType_U( PCWSTR path )
|
||||
{
|
||||
if (IS_SEPARATOR(path[0]))
|
||||
{
|
||||
if (!IS_SEPARATOR(path[1])) return ABSOLUTE_PATH; /* "/foo" */
|
||||
if (path[2] != '.') return UNC_PATH; /* "//foo" */
|
||||
if (IS_SEPARATOR(path[3])) return DEVICE_PATH; /* "//./foo" */
|
||||
if (path[3]) return UNC_PATH; /* "//.foo" */
|
||||
return UNC_DOT_PATH; /* "//." */
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!path[0] || path[1] != ':') return RELATIVE_PATH; /* "foo" */
|
||||
if (IS_SEPARATOR(path[2])) return ABSOLUTE_DRIVE_PATH; /* "c:/foo" */
|
||||
return RELATIVE_DRIVE_PATH; /* "c:foo" */
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user