packages feed

hs-ffmpeg-0.2.3: src/Media/FFMpeg/Internals/Types.hsc

-- -*- haskell -*-
{-# LANGUAGE ForeignFunctionInterface #-}

{- |The 'Media.FFMpeg.Internals.Types' module defines types and 
   structures from the ffmpeg library
   
   (c) 2009 Vasyl Pasternak
 -}
module Media.FFMpeg.Internals.Types
    (
     UInt
    ,VoidP
    ,SInt
    ,PictureSlice
    ,PictureStride
    ) where

import Foreign

type UInt = #{type unsigned int}
type SInt = #{type int}
type VoidP = Ptr ()

type PictureSlice = Ptr ()
type PictureStride = Ptr ()