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
----------------------------------------------------------------
|