Package org.fusesource.jansi.internal
Class Kernel32.SMALL_RECT
- java.lang.Object
-
- org.fusesource.jansi.internal.Kernel32.SMALL_RECT
-
- Enclosing class:
- Kernel32
@JniClass(flags={STRUCT,TYPEDEF}, conditional="defined(_WIN32) || defined(_WIN64)") public static class Kernel32.SMALL_RECT extends java.lang.Object
http://msdn.microsoft.com/en-us/library/ms686311%28VS.85%29.aspx
-
-
Constructor Summary
Constructors Constructor Description SMALL_RECT()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Kernel32.SMALL_RECT
copy()
short
height()
private static void
init()
short
width()
-
-
-
Field Detail
-
SIZEOF
@JniField(flags=CONSTANT, accessor="sizeof(SMALL_RECT)") public static int SIZEOF
-
left
@JniField(accessor="Left") public short left
-
top
@JniField(accessor="Top") public short top
-
right
@JniField(accessor="Right") public short right
-
bottom
@JniField(accessor="Bottom") public short bottom
-
-
Method Detail
-
init
@JniMethod(flags=CONSTANT_INITIALIZER) private static final void init()
-
width
public short width()
-
height
public short height()
-
copy
public Kernel32.SMALL_RECT copy()
-
-