Copyright | 2012-2013 shelarcy |
---|---|
License | BSD-style |
Maintainer | shelarcy@gmail.com |
Stability | Provisional |
Portability | Non-portable (Win32 API) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Information about your computer.
Synopsis
- 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
expandEnvironmentStrings :: String -> IO String #
Computer Name
getComputerName :: IO String #
setComputerName :: String -> IO () #
c_SetComputerName :: LPTSTR -> IO Bool #
System metrics
getSystemMetrics :: SMSetting -> IO Int #
sM_STARTER :: SMSetting #
User name
getUserName :: IO String #
Get user name. See: https://github.com/haskell/win32/issues/8, http://lpaste.net/41521
Version Info
data OSVERSIONINFOEX #
Instances
Show OSVERSIONINFOEX # | |
Defined in System.Win32.Info.Version | |
Storable OSVERSIONINFOEX # | |
Defined in System.Win32.Info.Version sizeOf :: OSVERSIONINFOEX -> Int Source # alignment :: OSVERSIONINFOEX -> Int Source # peekElemOff :: Ptr OSVERSIONINFOEX -> Int -> IO OSVERSIONINFOEX Source # pokeElemOff :: Ptr OSVERSIONINFOEX -> Int -> OSVERSIONINFOEX -> IO () Source # peekByteOff :: Ptr b -> Int -> IO OSVERSIONINFOEX Source # pokeByteOff :: Ptr b -> Int -> OSVERSIONINFOEX -> IO () Source # peek :: Ptr OSVERSIONINFOEX -> IO OSVERSIONINFOEX Source # poke :: Ptr OSVERSIONINFOEX -> OSVERSIONINFOEX -> IO () Source # |
type POSVERSIONINFOEX = Ptr OSVERSIONINFOEX #
type LPOSVERSIONINFOEX = Ptr OSVERSIONINFOEX #
data ProductType #
Instances
Eq ProductType # | |
Defined in System.Win32.Info.Version (==) :: ProductType -> ProductType -> Bool # (/=) :: ProductType -> ProductType -> Bool # | |
Show ProductType # | |
Defined in System.Win32.Info.Version | |
Storable ProductType # | |
Defined in System.Win32.Info.Version sizeOf :: ProductType -> Int Source # alignment :: ProductType -> Int Source # peekElemOff :: Ptr ProductType -> Int -> IO ProductType Source # pokeElemOff :: Ptr ProductType -> Int -> ProductType -> IO () Source # peekByteOff :: Ptr b -> Int -> IO ProductType Source # pokeByteOff :: Ptr b -> Int -> ProductType -> IO () Source # peek :: Ptr ProductType -> IO ProductType Source # poke :: Ptr ProductType -> ProductType -> IO () Source # |
c_GetVersionEx :: LPOSVERSIONINFOEX -> IO BOOL #
Processor features
type ProcessorFeature = DWORD #