module RLTK::CG::Support
Public Class Methods
load_library(lib)
click to toggle source
Load a shared library into memory and make its exported symbols available to execution engines.
@param [String] lib Path to the shared library to load
# File lib/rltk/cg/support.rb, line 25 def self.load_library(lib) Bindings.load_library_permanently(lib).to_bool end