Source code of Windows XP (NT5)
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.

27 lines
435 B

  1. /*
  2. * util.h - Miscellaneous utility functions module description.
  3. */
  4. /* Prototypes
  5. *************/
  6. /* util.h */
  7. extern BOOL IsLocalDrivePath(LPCTSTR);
  8. extern BOOL IsUNCPath(LPCTSTR);
  9. extern BOOL DeleteLastDrivePathElement(LPTSTR);
  10. #if defined(DEBUG) || defined(VSTF)
  11. extern BOOL IsContained(PCVOID, UINT, PCVOID, UINT);
  12. extern BOOL IsValidCNRName(LPCTSTR);
  13. #endif
  14. #ifdef DEBUG
  15. extern BOOL IsDriveRootPath(LPCTSTR);
  16. #endif