0b4a830db1
Former-commit-id: 92904c9c5915c37244316e42ba99e7b934ed7ee2
15 lines
268 B
C#
15 lines
268 B
C#
using System;
|
|
|
|
namespace Microsoft.Win32
|
|
{
|
|
static class NativeMethods
|
|
{
|
|
public const int E_ABORT = unchecked ((int)0x80004004);
|
|
|
|
public static bool CloseProcess (IntPtr handle)
|
|
{
|
|
// TODO:
|
|
return true;
|
|
}
|
|
}
|
|
} |