Skip to content
  • Paul Sokolovsky's avatar
    unix: Initial implementation of FFI module. · 60a9fac8
    Paul Sokolovsky authored
    Foreign Function Interface module allows to load native dynamic libraries,
    call functions and access variables in them. This makes possible to write
    interface modules in pure Python.
    
    This module provides thin wrapper around libffi. ctypes compatibility might
    be possible to implement on top of this module (though ctypes allow to call
    functions without prototypes, which is not supported by libffi (i.e.
    implementation would be inefficient))).
    60a9fac8