2014-02-13 14:00:15 -04:00
|
|
|
{- Windows processes
|
|
|
|
-
|
|
|
|
- Copyright 2014 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
2014-05-10 11:01:27 -03:00
|
|
|
- License: BSD-2-clause
|
2014-02-13 14:00:15 -04:00
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE ForeignFunctionInterface #-}
|
|
|
|
|
|
|
|
module Utility.WinProcess where
|
|
|
|
|
|
|
|
import Utility.PID
|
|
|
|
|
|
|
|
foreign import ccall unsafe "terminatepid"
|
|
|
|
terminatePID :: PID -> IO ()
|