File: Win32.hs

package info (click to toggle)
ghc 9.10.3-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 169,076 kB
  • sloc: haskell: 713,554; ansic: 84,184; cpp: 30,255; javascript: 9,003; sh: 7,870; fortran: 3,527; python: 3,228; asm: 2,523; makefile: 2,324; yacc: 1,570; lisp: 532; xml: 196; perl: 111; csh: 2
file content (70 lines) | stat: -rw-r--r-- 2,291 bytes parent folder | download | duplicates (3)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#if __GLASGOW_HASKELL__ >= 709
{-# LANGUAGE Safe #-}
#else
{-# LANGUAGE Trustworthy #-}
#endif
-----------------------------------------------------------------------------
-- |
-- Module      :  System.Win32
-- Copyright   :  (c) Alastair Reid, 1999-2003
-- License     :  BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer  :  Esa Ilari Vuokko <ei@vuokko.info>
-- Stability   :  provisional
-- Portability :  portable
--
-- An FFI binding to the system part of the Win32 API.
--
-----------------------------------------------------------------------------

module System.Win32
        ( module System.Win32.DLL
        , module System.Win32.Event
        , module System.Win32.File
        , module System.Win32.FileMapping
        , module System.Win32.Info
        , module System.Win32.Mem
        , module System.Win32.MinTTY
        , module System.Win32.NLS
        , module System.Win32.Process
        , module System.Win32.Registry
        , module System.Win32.Time
        , module System.Win32.Console
        , module System.Win32.Security
        , module System.Win32.Types
        , module System.Win32.Shell
        , module System.Win32.Automation
        , module System.Win32.HardLink
        , module System.Win32.SymbolicLink
        , module System.Win32.Thread
        , module System.Win32.Utils
        ) where

import System.Win32.DLL
import System.Win32.Event
import System.Win32.File
import System.Win32.FileMapping
import System.Win32.Info
import System.Win32.Mem
import System.Win32.MinTTY
import System.Win32.NLS hiding  ( LCID, LANGID, SortID, SubLANGID
                                , PrimaryLANGID, mAKELCID, lANGIDFROMLCID
                                , sORTIDFROMLCID, mAKELANGID, pRIMARYLANGID
                                , sUBLANGID )
import System.Win32.Process
import System.Win32.Registry
import System.Win32.Time
import System.Win32.Console
import System.Win32.Types
import System.Win32.Security
import System.Win32.Shell

import System.Win32.Automation
import System.Win32.HardLink
import System.Win32.SymbolicLink
import System.Win32.Thread
import System.Win32.Utils hiding ( try )

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