Desktop Functions: Smart Device Functions:
|
PathCreateFromUrl (shlwapi)
C# Signature:
[DllImport("shlwapi.dll", SetLastError=true)] VB Signature:
Declare Unicode Function PathCreateFromUrl Lib "shlwapi.dll" Alias "PathCreateFromUrlW" _ User-Defined Types:None. Alternative Managed API:Do you know one? Please contribute it! Notes:The pathLength will be at most MAX_PATH (defined in WinDef.h). Returns an HRESULT. Tips & Tricks:Please add some! Sample Code (VB winform):
Const MAX_PATH As Integer = 260
Private Sub pathFromUrlButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles pathFromUrlButton.Click
rc = PathCreateFromUrl(urlTextbox.Text, sb, sz, 0) Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|