1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
-----------------------------------------------------------------------------
-- |
-- Module : Graphics.X11.Xlib.Internal
-- Copyright : (c) Daniel Wagner, 2013
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
-- Stability : provisional
-- Portability : portable
--
-- Functions used often elsewhere in the X11 bindings.
--
-----------------------------------------------------------------------------
module Graphics.X11.Xlib.Internal (xFree) where
import Foreign
import Foreign.C.Types
foreign import ccall unsafe "XFree" xFree :: Ptr a -> IO CInt
|