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 29 30 31 32 33 34 35 36
|
-- |
-- Module : Basement.Compat.PrimTypes
-- License : BSD-style
-- Maintainer : Vincent Hanquez <vincent@snarc.org>
-- Stability : experimental
-- Portability : portable
--
{-# LANGUAGE MagicHash #-}
module Basement.Compat.PrimTypes
( FileSize#
, Offset#
, CountOf#
, Bool#
, Pinned#
) where
import GHC.Prim
-- | File size in bytes
type FileSize# = Word64#
-- | Offset in a bytearray, string, type alias
--
-- for code documentation purpose only, just a simple type alias on Int#
type Offset# = Int#
-- | CountOf in bytes type alias
--
-- for code documentation purpose only, just a simple type alias on Int#
type CountOf# = Int#
-- | Lowlevel Boolean
type Bool# = Int#
-- | Pinning status
type Pinned# = Bool#
|