Class Kernel32.COORD

  • Enclosing class:
    Kernel32

    @JniClass(flags={STRUCT,TYPEDEF},
              conditional="defined(_WIN32) || defined(_WIN64)")
    public static class Kernel32.COORD
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int SIZEOF  
      short x  
      short y  
    • Constructor Summary

      Constructors 
      Constructor Description
      COORD()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Kernel32.COORD copy()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • SIZEOF

        @JniField(flags=CONSTANT,
                  accessor="sizeof(COORD)")
        public static int SIZEOF
      • x

        @JniField(accessor="X")
        public short x
      • y

        @JniField(accessor="Y")
        public short y
    • Constructor Detail

      • COORD

        public COORD()