Refactoring.

This commit is contained in:
qianlifeng
2014-12-26 22:51:04 +08:00
parent 50f6044a2f
commit ccc8d7e5cd
27 changed files with 114 additions and 139 deletions

View File

@@ -6,7 +6,12 @@ namespace Wox.Plugin
{
public interface IPublicAPI
{
/// <summary>
/// Push result to query window
/// </summary>
/// <param name="query"></param>
/// <param name="plugin"></param>
/// <param name="results"></param>
void PushResults(Query query,PluginMetadata plugin, List<Result> results);
bool ShellRun(string cmd, bool runAsAdministrator = false);

View File

@@ -8,6 +8,6 @@ namespace Wox.Plugin
public enum PluginType
{
System,
ThirdParty
User
}
}