2427832bed
Omitted a couple of files what have had significant contributions from others.
15 lines
273 B
Haskell
15 lines
273 B
Haskell
{- Windows processes
|
|
-
|
|
- Copyright 2014 Joey Hess <joey@kitenet.net>
|
|
-
|
|
- License: BSD-2-clause
|
|
-}
|
|
|
|
{-# LANGUAGE ForeignFunctionInterface #-}
|
|
|
|
module Utility.WinProcess where
|
|
|
|
import Utility.PID
|
|
|
|
foreign import ccall unsafe "terminatepid"
|
|
terminatePID :: PID -> IO ()
|