Desktop Functions: Smart Device Functions:
|
Search Results for "PathIsRelative" in [All]shlwapi
static extern bool PathIsRelative([In] string lpszPath);
<DllImport("shlwapi.dll", EntryPoint:="PathIsRelativeW", SetLastError:=True, CharSet:=CharSet.Unicode)> _
Public Function PathIsRelative(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
Private Declare Function PathIsRelative Lib "shlwapi" _
Alias "PathIsRelativeA" (ByVal pszPath As String) As Long
[DllImport("shlwapi.dll", CharSet = CharSet.Auto)] static extern bool PathIsRelative([In] string lpszPath);
return PathIsRelative(path);
<DllImport("shlwapi.dll", EntryPoint:="PathIsRelativeW", SetLastError:=True, CharSet:=CharSet.Unicode)> _
Public Function PathIsRelative(<MarshalAs(UnmanagedType.LPTStr)>pszPath As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
Return PathIsRelative(path) |