BROWSEINFO (Structures)
Last changed: -202.74.138.1

.
Summary
Contains parameters for the SHBrowseForFolder function and receives information about the folder selected by the user.

C# Definition:

[StructLayout(LayoutKind.Sequential)]
public struct BrowseInfo
{
    public IntPtr hwndOwner;
    public IntPtr pidlRoot;
    [Out] public StringBuilder displayname;
    public string title;
    public int flags;
    public BrowseCallBackProc callback;
    public IntPtr lparam;
    public int iImage;
}

User-Defined Field Types:

BrowseCallbackProc

Notes:

None.

Documentation
BROWSEINFO on MSDN