Examples of SHFILEINFOA


Examples of org.sf.feeling.swt.win32.internal.extension.SHFILEINFOA

    int pid = Extension.SHGetSpecialFolderLocation(folderId);
    SHFILEINFO shInfo;
    if (Extension.IsUnicode)
      shInfo = new SHFILEINFOW();
    else
      shInfo = new SHFILEINFOA();
    Extension.SHGetFileInfo(pid, 0, shInfo, SHFILEINFO.sizeof,
        Win32.SHGFI_DISPLAYNAME | Win32.SHGFI_SYSICONINDEX
            | Win32.SHGFI_ICON | Win32.SHGFI_PIDL | type);
    return Image.win32_new(null, SWT.ICON, shInfo.hIcon);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.