Examples of SHFILEINFOW


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

    if((style & ICON_SMALL)>0)type |= Win32.ICON_SMALL;
    if((style & ICON_LARGE)>0)type |= Win32.ICON_LARGE;
    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);
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.