Desktop Functions: Smart Device Functions:
|
Search Results for "PathIsUNCServerShare" in [All]shlwapi1: PathIsUNC
static extern TODO PathIsUNCServerShare(TODO);
[DllImport("shlwapi.dll", EntryPoint:="PathIsUNCServerShareW", SetLastError:=True, CharSet:=CharSet.Unicode)]
static extern bool PathIsUNCServerShare([MarshalAs(UnmanagedType.LPTStr)]string pszPath);
<DllImport("shlwapi.dll", EntryPoint:="PathIsUNCServerShareW", SetLastError:=True, CharSet:=CharSet.Unicode)> _
Public Function PathIsUNCServerShare(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
Public Declare Function PathIsUNCServerShare Lib "shlwapi" Alias "PathIsUNCServerShareA" _ |