2016-07-21 09:40:10 +00:00
|
|
|
using System;
|
|
|
|
|
2015-04-07 09:35:12 +01:00
|
|
|
namespace Microsoft.Win32
|
|
|
|
{
|
|
|
|
static class NativeMethods
|
|
|
|
{
|
2016-07-21 09:40:10 +00:00
|
|
|
public const int E_ABORT = unchecked ((int)0x80004004);
|
|
|
|
|
|
|
|
public static bool CloseProcess (IntPtr handle)
|
|
|
|
{
|
|
|
|
// TODO:
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-07 09:35:12 +01:00
|
|
|
}
|
|
|
|
}
|