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.

21 lines
505 B

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. #ifndef __SHLWAPI2__
  3. #define __SHLWAPI2__
  4. // NOTE: a much hated clone of shlwapi.dll routines.
  5. // from nt5inc\shlwapi.h.
  6. BOOL PathCompactPathEx(LPTSTR pszOut, LPCTSTR pszSrc,
  7. UINT cchMax, DWORD dwFlags = 0);
  8. bool PathIsUNC(LPCTSTR pszPath);
  9. LPTSTR PathAddBackslash(LPTSTR lpszPath);
  10. LPTSTR PathFindFileName(LPCTSTR pPath);
  11. #ifndef UNICODE
  12. BOOL IsTrailByte(LPCTSTR pszSt, LPCTSTR pszCur);
  13. #endif
  14. #endif __SHLWAPI2__