Files
wj32 d01c5b9167 back-ported provider boosting fix from PH 2.x
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2542 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-12-30 04:24:51 +00:00

19 lines
444 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using ProcessHacker.Common;
namespace ProcessHacker
{
public interface IProvider
{
bool Boosting { get; set; }
bool Busy { get; }
bool Enabled { get; set; }
LinkedListEntry<IProvider> ListEntry { get; }
ProviderThread Owner { get; set; }
bool Unregistering { get; set; }
void Run();
}
}