module FFI::Library

Public Instance Methods

attach_function_private(*args) click to toggle source

Wrapper method for attach_function + private

   # File lib/puppet/ffi/windows/api_types.rb
16 def attach_function_private(*args)
17   attach_function(*args)
18   private args[0]
19 end