Created
June 21, 2013 07:21
-
-
Save michaelij/5829478 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <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