Desktop Functions: Smart Device Functions:
|
Search Results for "PathIsUNC" 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" _
[DllImport("shlwapi.dll", EntryPoint = "PathIsUNCServerW", SetLastError = True, CharSet = CharSet.Unicode)]
static extern bool PathIsUNCServer([MarshalAs(UnmanagedType.LPTStr)]string pszPath);
<DllImport("shlwapi.dll", EntryPoint:="PathIsUNCServerW", SetLastError:=True, CharSet:=CharSet.Unicode)> _
Public Function PathIsUNCServer(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
Public Declare Function PathIsUNCServer Lib "shlwapi" Alias "PathIsUNCServerA" _ |