mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 01:30:44 +00:00
trunk contents moved to root
This commit is contained in:
@@ -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.HBITMAP;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class ICONINFO extends Structure {
|
||||
|
||||
public boolean fIcon;
|
||||
public DWORD xHotspot;
|
||||
public DWORD yHotspot;
|
||||
public HBITMAP hbmMask;
|
||||
public HBITMAP hbmColor;
|
||||
|
||||
@Override
|
||||
protected List getFieldOrder() {
|
||||
return Arrays.asList("fIcon", "xHotspot", "yHotspot", "hbmMask", "hbmColor");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user