packages feed

c-struct 0.1.2.0 → 0.1.3.0

raw patch · 3 files changed

+15/−6 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Foreign.C.Struct.TypeSynonyms: type ListFloat = [Float]
+ Foreign.C.Struct.TypeSynonyms: type PtrCString = Ptr CString
+ Foreign.C.Struct.TypeSynonyms: type PtrFloat = Ptr Float

Files

c-struct.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           c-struct-version:        0.1.2.0+version:        0.1.3.0 synopsis:       To make a wrapper for struct of C language description:    Please see the README on GitHub at <https://github.com/YoshikuniJujo/c-struct#readme> category:       Foreign
− src/Foreign/C/Struct/TypeSynonyms.hs
@@ -1,5 +0,0 @@-module Foreign.C.Struct.TypeSynonyms where--import Foreign.Ptr--type PtrVoid = Ptr ()
+ src/Foreign/C/Struct/TypeSynonyms.hsc view
@@ -0,0 +1,14 @@+module Foreign.C.Struct.TypeSynonyms where++import Foreign.Ptr+import Foreign.C.String++-- * PTR++type PtrVoid = Ptr ()+type PtrFloat = Ptr #{type float}+type PtrCString = Ptr CString++-- * LIST++type ListFloat = [#{type float}]