module System.Win32.Console.HWND (getConsoleHWND) where
import Control.Concurrent ( threadDelay )
import Control.Exception ( bracket )
import Foreign.Ptr ( nullPtr )
import Graphics.Win32.Window ( c_FindWindow )
import Graphics.Win32.GDI.Types ( HWND )
import System.Win32.Console.Title ( getConsoleTitle, setConsoleTitle )
import System.Win32.Process ( getCurrentProcessId )
import System.Win32.String ( withTString )
import System.Win32.Time ( getTickCount )
getConsoleHWND :: IO HWND
getConsoleHWND :: IO HWND
getConsoleHWND
= IO String -> (String -> IO ()) -> (String -> IO HWND) -> IO HWND
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket IO String
getConsoleTitle String -> IO ()
setConsoleTitle ((String -> IO HWND) -> IO HWND) -> (String -> IO HWND) -> IO HWND
forall a b. (a -> b) -> a -> b
$ \String
_ -> do
time <- IO DWORD
getTickCount
pid <- getCurrentProcessId
let unique = DWORD -> String
forall a. Show a => a -> String
show DWORD
time String -> String -> String
forall a. [a] -> [a] -> [a]
++ DWORD -> String
forall a. Show a => a -> String
show DWORD
pid
setConsoleTitle unique
threadDelay (42*1000)
withTString unique $ \LPTSTR
punique ->
LPTSTR -> LPTSTR -> IO HWND
c_FindWindow LPTSTR
forall a. Ptr a
nullPtr LPTSTR
punique