Skip to content

Instantly share code, notes, and snippets.

@shadowfox
Created June 21, 2013 07:21
Show Gist options
  • Save shadowfox/5829478 to your computer and use it in GitHub Desktop.
Save shadowfox/5829478 to your computer and use it in GitHub Desktop.
/// <summary>
/// The BROWSEINFO structure used by SHBrowseForFolder.
/// See http://msdn.microsoft.com/en-us/library/windows/desktop/bb773205%28v=vs.85%29.aspx
/// </summary>
public struct BROWSEINFO
{
public IntPtr hWndOwner;
public int pIDLRoot;
public string pszDisplayName;
public string lpszTitle;
public int ulFlags;
public int lpfnCallback;
public int lParam;
public int iImage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment