summaryrefslogtreecommitdiff
path: root/Utility/WinProcess.hs
blob: 7a566dcba9728a7cd8ed7dc86eee940cccd9367a (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>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

{-# LANGUAGE ForeignFunctionInterface #-}

module Utility.WinProcess where

import Utility.PID

foreign import ccall unsafe "terminatepid"
	terminatePID :: PID -> IO ()