Method: Win::Library::API#initialize

Defined in:
lib/win/library.rb

#initialize(namespace, function_name, effective_name, prototype, return_type, dll) ⇒ API

Returns a new instance of API.



485
486
487
488
489
490
491
492
# File 'lib/win/library.rb', line 485

def initialize( namespace, function_name, effective_name, prototype, return_type, dll )
  @namespace = namespace
  @function_name = function_name.to_sym
  @effective_name = effective_name.to_sym
  @prototype = prototype
  @return_type = return_type
  @dll = dll
end