c-struct 0.1.1.3 → 0.1.2.0
raw patch · 2 files changed
+7/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Foreign.C.Struct.TypeSynonyms: type PtrVoid = Ptr ()
Files
c-struct.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: c-struct-version: 0.1.1.3+version: 0.1.2.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@@ -28,6 +28,7 @@ library exposed-modules: Foreign.C.Struct+ Foreign.C.Struct.TypeSynonyms other-modules: Foreign.C.Struct.Ord Foreign.C.Struct.Parts
+ src/Foreign/C/Struct/TypeSynonyms.hs view
@@ -0,0 +1,5 @@+module Foreign.C.Struct.TypeSynonyms where++import Foreign.Ptr++type PtrVoid = Ptr ()