In a Haskell program, what's the best way to use constants defined in C headers?
|
|
For this task, hsc2hs is your friend. For a simple example, let's get the value of
With hsc2hs, we can Instead of building by hand, use Cabal:
Notice that even though the name of the main program is
Note that you'll want to break up lines with multiple constants. Say you're assembling a bitfield to pass to FormatMessage. You'll want to write it as
Putting them all on one line will result in syntax errors. |
|||
|
|
|
|
GHC is moving away from One side effect is that your program may be compiled without using any C headers at all, even in Thus it is necessary to use
|
||
|
|
