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
19 lines
320 B
/*
|
|
* d a v u t i l . c p p
|
|
*
|
|
* Purpose:
|
|
* Little tools for DAVFS.
|
|
*
|
|
* Owner:
|
|
* zyang.
|
|
*
|
|
* Copyright (C) Microsoft Corp 1996 - 1997. All rights reserved.
|
|
*/
|
|
|
|
#include "_davfs.h"
|
|
|
|
BOOL FSucceededColonColonCheck(
|
|
/* [in] */ LPCWSTR pwszURI)
|
|
{
|
|
return !wcschr (pwszURI, L':');
|
|
}
|