I have some questions about the FFI in Haskell
- I know i must use the language pragma
{-# LANGUAGE ForeignFunctionInterface #-}but what is the difference when i use{-# LANGUAGE CPP, ForeignFunctionInterface #-}what can i do "more" with the CPP - i use a function in c which use a
struct, how can i handle this in the FFI? - when i have to use
CIntand when justInt?