-
Notifications
You must be signed in to change notification settings - Fork 0
/
inline-c-win32.cabal
28 lines (27 loc) · 980 Bytes
/
inline-c-win32.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: inline-c-win32
version: 0.1
synopsis: Win32 API Context for the inline-c library
license: MIT
license-file: LICENSE
author: Anton Dessiatov
maintainer: [email protected]
copyright: Anton Dessiatov,
category: FFI
build-type: Simple
cabal-version: >=1.16
homepage: https://github.com/anton-dessiatov/inline-c-win32
bug-reports: https://github.com/anton-dessiatov/inline-c-win32/issues
description: This is a little helper for the marvelous inline-c library. It provides a context with Win32 API
data types so you can use DWORD, BOOL, UINT and other Win32 data types right in your inlined
function types.
library
default-language: Haskell2010
build-depends:
base >= 4 && < 5
, containers
, inline-c >= 0.5.3
, template-haskell
, Win32
exposed-modules:
Language.C.Inline.Win32
hs-source-dirs: src