├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Main.hs ├── eta-ffi.cabal ├── java └── Utils.java └── src └── Eta ├── FFI.hs └── FFI ├── Filter.hs ├── Spec.hs ├── Types.hs └── Types ├── Class.hs ├── Core.hs └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.jar -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/app/Main.hs -------------------------------------------------------------------------------- /eta-ffi.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/eta-ffi.cabal -------------------------------------------------------------------------------- /java/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/java/Utils.java -------------------------------------------------------------------------------- /src/Eta/FFI.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/src/Eta/FFI.hs -------------------------------------------------------------------------------- /src/Eta/FFI/Filter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/src/Eta/FFI/Filter.hs -------------------------------------------------------------------------------- /src/Eta/FFI/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/src/Eta/FFI/Spec.hs -------------------------------------------------------------------------------- /src/Eta/FFI/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/src/Eta/FFI/Types.hs -------------------------------------------------------------------------------- /src/Eta/FFI/Types/Class.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/src/Eta/FFI/Types/Class.hs -------------------------------------------------------------------------------- /src/Eta/FFI/Types/Core.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/src/Eta/FFI/Types/Core.hs -------------------------------------------------------------------------------- /src/Eta/FFI/Types/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typelead/eta-ffi/HEAD/src/Eta/FFI/Types/Spec.hs --------------------------------------------------------------------------------