Files
mirror-processhacker/trunk/ProcessHacker/Providers/Internal/IProvider.cs
T
wj32 0828d11c96 implemented a shared thread for providers - less memory usage for process properties
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@921 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-03-26 07:37:08 +00:00

17 lines
350 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProcessHacker
{
public interface IProvider
{
bool Busy { get; }
bool CreateThread { get; set; }
bool Enabled { get; set; }
bool UseInvoke { get; set; }
void RunOnce();
void RunOnceAsync();
}
}