File: ExtraTypes.hs

package info (click to toggle)
haskell-x11 1.10.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,392 kB
  • sloc: haskell: 761; ansic: 160; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,216 bytes parent folder | download | duplicates (2)
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      :  Graphics.X11.ExtraTypes
-- Copyright   :  (c) Alastair Reid, 1999-2003
-- License     :  BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer  :  libraries@haskell.org
-- Stability   :  unstable
-- Portability :  unportable
--
-- Extra keysyms defined by X.org that may not be in other implementations.
--
-----------------------------------------------------------------------------

module Graphics.X11.ExtraTypes
        (
          -- * Types
          module Graphics.X11.ExtraTypes.AP,
          module Graphics.X11.ExtraTypes.DEC,
          module Graphics.X11.ExtraTypes.HP,
          module Graphics.X11.ExtraTypes.Sun,
          module Graphics.X11.ExtraTypes.XF86,
          module Graphics.X11.ExtraTypes.XorgDefault,

        ) where

import Graphics.X11.ExtraTypes.AP
import Graphics.X11.ExtraTypes.DEC
import Graphics.X11.ExtraTypes.HP
import Graphics.X11.ExtraTypes.Sun
import Graphics.X11.ExtraTypes.XF86
import Graphics.X11.ExtraTypes.XorgDefault

----------------------------------------------------------------
-- End
----------------------------------------------------------------