Copyright | 2012-2013 shelarcy |
---|---|
License | BSD-style |
Maintainer | shelarcy@gmail.com |
Stability | Provisional |
Portability | Non-portable (Win32 API) |
Safe Haskell | Safe |
Language | Haskell98 |
Information about your computer.
- expandEnvironmentStrings :: String -> IO String
- c_ExpandEnvironmentStrings :: LPCTSTR -> LPTSTR -> DWORD -> IO DWORD
- getComputerName :: IO String
- setComputerName :: String -> IO ()
- c_GetComputerName :: LPTSTR -> LPDWORD -> IO Bool
- c_SetComputerName :: LPTSTR -> IO Bool
- getSystemMetrics :: SMSetting -> IO Int
- sM_CMONITORS :: SMSetting
- sM_IMMENABLED :: SMSetting
- sM_MOUSEWHEELPRESENT :: SMSetting
- sM_REMOTESESSION :: SMSetting
- sM_SAMEDISPLAYFORMAT :: SMSetting
- sM_XVIRTUALSCREEN :: SMSetting
- sM_YVIRTUALSCREEN :: SMSetting
- sM_SERVERR2 :: SMSetting
- sM_MEDIACENTER :: SMSetting
- sM_STARTER :: SMSetting
- sM_TABLETPC :: SMSetting
- getUserName :: IO String
- c_GetUserName :: LPTSTR -> LPDWORD -> IO Bool
- data OSVERSIONINFOEX = OSVERSIONINFOEX {}
- type POSVERSIONINFOEX = Ptr OSVERSIONINFOEX
- type LPOSVERSIONINFOEX = Ptr OSVERSIONINFOEX
- data ProductType
- getVersionEx :: IO OSVERSIONINFOEX
- c_GetVersionEx :: LPOSVERSIONINFOEX -> IO BOOL
- type ProcessorFeature = DWORD
- isProcessorFeaturePresent :: ProcessorFeature -> IO BOOL
- pF_3DNOW_INSTRUCTIONS_AVAILABLE :: ProcessorFeature
- pF_COMPARE_EXCHANGE_DOUBLE :: ProcessorFeature
- pF_FLOATING_POINT_EMULATED :: ProcessorFeature
- pF_FLOATING_POINT_PRECISION_ERRATA :: ProcessorFeature
- pF_MMX_INSTRUCTIONS_AVAILABLE :: ProcessorFeature
- pF_PAE_ENABLED :: ProcessorFeature
- pF_RDTSC_INSTRUCTION_AVAILABLE :: ProcessorFeature
- pF_XMMI_INSTRUCTIONS_AVAILABLE :: ProcessorFeature
- pF_XMMI64_INSTRUCTIONS_AVAILABLE :: ProcessorFeature
Environment Strings
Computer Name
setComputerName :: String -> IO () Source #
System metrics
User name
getUserName :: IO String Source #
Get user name. See: https://github.com/haskell/win32/issues/8, http://lpaste.net/41521
Version Info
data OSVERSIONINFOEX Source #
type POSVERSIONINFOEX = Ptr OSVERSIONINFOEX Source #
type LPOSVERSIONINFOEX = Ptr OSVERSIONINFOEX Source #
data ProductType Source #
c_GetVersionEx :: LPOSVERSIONINFOEX -> IO BOOL Source #
Processor features
type ProcessorFeature = DWORD Source #