class WinFFI::POINT

Public Instance Methods

to_a() click to toggle source
# File lib/win-ffi/core/struct/point.rb, line 10
def to_a
  [x, y]
end
to_s() click to toggle source
# File lib/win-ffi/core/struct/point.rb, line 6
def to_s
  "POINT x = #{x}, y = #{y}"
end