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.

19 lines
320 B

  1. /*
  2. * d a v u t i l . c p p
  3. *
  4. * Purpose:
  5. * Little tools for DAVFS.
  6. *
  7. * Owner:
  8. * zyang.
  9. *
  10. * Copyright (C) Microsoft Corp 1996 - 1997. All rights reserved.
  11. */
  12. #include "_davfs.h"
  13. BOOL FSucceededColonColonCheck(
  14. /* [in] */ LPCWSTR pwszURI)
  15. {
  16. return !wcschr (pwszURI, L':');
  17. }