2014-02-13 18:00:15 +00:00
|
|
|
{- Windows processes
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2014 Joey Hess <id@joeyh.name>
|
2014-02-13 18:00:15 +00:00
|
|
|
-
|
2014-05-10 14:01:27 +00:00
|
|
|
- License: BSD-2-clause
|
2014-02-13 18:00:15 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE ForeignFunctionInterface #-}
|
|
|
|
|
|
|
|
module Utility.WinProcess where
|
|
|
|
|
|
|
|
import Utility.PID
|
|
|
|
|
|
|
|
foreign import ccall unsafe "terminatepid"
|
|
|
|
terminatePID :: PID -> IO ()
|