File: Internal.hsc

package info (click to toggle)
haskell-x11 1.10.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,392 kB
  • sloc: haskell: 761; ansic: 160; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 626 bytes parent folder | download | duplicates (6)
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