mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-18 13:58:06 +00:00
trunk contents moved to root
This commit is contained in:
29
src/com/sun/jna/platform/win32/SHFILEINFO.java
Normal file
29
src/com/sun/jna/platform/win32/SHFILEINFO.java
Normal file
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* To change this template, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package com.sun.jna.platform.win32;
|
||||
|
||||
import com.sun.jna.Structure;
|
||||
import com.sun.jna.platform.win32.WinDef.DWORD;
|
||||
import com.sun.jna.platform.win32.WinDef.HICON;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class SHFILEINFO extends Structure {
|
||||
|
||||
public HICON hIcon;
|
||||
public int iIcon;
|
||||
public DWORD dwAttributes;
|
||||
public char[] szDisplayName = new char[260];
|
||||
public char[] szTypeName = new char[80];
|
||||
|
||||
@Override
|
||||
protected List getFieldOrder() {
|
||||
return Arrays.asList("hIcon", "iIcon", "dwAttributes", "szDisplayName", "szTypeName");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user