nice-ffi icon indicating copy to clipboard operation
nice-ffi copied to clipboard

Nice-FFI: Convenience layer atop Ruby-FFI

Results 2 nice-ffi issues
Sort by recently updated
recently updated
newest added

Workaround: edit the file https://github.com/jacius/nice-ffi/blob/master/lib/nice-ffi/pathset.rb:456 ``` paths = @paths.collect{ |regexp,ps| regexp =~ os ? ps : [] }.flatten ``` replace by ``` paths = @paths.collect{ |regexp,ps| regexp =~ "windows" ?...

This patch enables the hash and array import/export functions to work with nested structures (not pointers). It also adds a spec file for structures that validates this functionality.