7 lines
144 B
C#
Raw Normal View History

namespace Microsoft.Win32
{
static class NativeMethods
{
public const int E_ABORT = unchecked ((int)0x80004004);
}
}