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) 2000 Microsoft Corporation
Module Name:
Win9xPath.h
History:
10/20/2000 robkenny Created
--*/
#include <windows.h>
namespace ShimLib {
inline bool bIsPathSep(char ch) { return ch == '\\' || ch == '/'; }
inline bool bIsPathSep(WCHAR ch) { return ch == L'\\' || ch == L'/'; }
const WCHAR * GetDrivePortion(const WCHAR * uncorrected);
// Non-const version of above routine.
inline WCHAR * GetDrivePortion(WCHAR * uncorrected) { return (WCHAR *)GetDrivePortion((const WCHAR*)uncorrected); }
WCHAR * W9xPathMassageW(const WCHAR * uncorrect);
}; // end of namespace ShimLib
|