summaryrefslogtreecommitdiff
path: root/Utility/WinProcess.hs
blob: cfac8794c4c89a64ef6251cae1c4d3042705f8ba (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 "winprocess.h terminatepid"
	terminatePID :: PID -> IO ()