blob: 36f079d041c5d4ba5cf9d427c7e2d4e9345f06d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{- Windows processes
-
- Copyright 2014 Joey Hess <id@joeyh.name>
-
- License: BSD-2-clause
-}
{-# LANGUAGE ForeignFunctionInterface #-}
module Utility.WinProcess where
import Utility.PID
foreign import ccall unsafe "terminatepid"
terminatePID :: PID -> IO ()
|