git-annex/Utility/WinProcess.hs
Joey Hess 2427832bed relicense general utility library code to BSD
Omitted a couple of files what have had significant contributions from
others.
2014-05-10 11:01:27 -03:00

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 ()