Module: Jolt::Native::CoreFunctions
- Defined in:
- lib/jolt/native/core_functions.rb
Class Method Summary collapse
Class Method Details
.attach(native) ⇒ Object
8 9 10 11 12 13 14 |
# File 'lib/jolt/native/core_functions.rb', line 8 def attach(native) native.attach_function :JR_ContactQueue_Create, [:uint32], :pointer native.attach_function :JR_ContactQueue_Destroy, [:pointer], :void native.attach_function :JR_ContactQueue_GetListener, [:pointer], :pointer native.attach_function :JR_ContactQueue_Pop, %i[pointer pointer], :bool native.attach_function :JR_ContactQueue_GetDroppedCount, [:pointer], :uint64 end |