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.
21 lines
505 B
21 lines
505 B
// Copyright (c) 1997-1999 Microsoft Corporation
|
|
#ifndef __SHLWAPI2__
|
|
#define __SHLWAPI2__
|
|
|
|
|
|
// NOTE: a much hated clone of shlwapi.dll routines.
|
|
|
|
// from nt5inc\shlwapi.h.
|
|
BOOL PathCompactPathEx(LPTSTR pszOut, LPCTSTR pszSrc,
|
|
UINT cchMax, DWORD dwFlags = 0);
|
|
|
|
bool PathIsUNC(LPCTSTR pszPath);
|
|
LPTSTR PathAddBackslash(LPTSTR lpszPath);
|
|
|
|
LPTSTR PathFindFileName(LPCTSTR pPath);
|
|
#ifndef UNICODE
|
|
BOOL IsTrailByte(LPCTSTR pszSt, LPCTSTR pszCur);
|
|
#endif
|
|
|
|
|
|
#endif __SHLWAPI2__
|