summaryrefslogtreecommitdiff
path: root/ext/fiddle/lib/fiddle/function.rb
blob: f4d41e6a82f7073050e5723a8e67252bff9bfa00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Fiddle
  class Function
    # The ABI of the Function.
    attr_reader :abi

    # The address of this function
    attr_reader :ptr

    def to_i
      ptr.to_i
    end
  end
end