blob: 4621b4fa6d1acc65a6bb00c870b317127b492cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{- 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 ()
|