Implement IInstantSearch for CMD and WebSearch plugin

This commit is contained in:
qianlifeng
2015-01-27 22:59:03 +08:00
parent 4ecff94aec
commit 9f64a384d6
7 changed files with 99 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Plugin
{
public interface IInstantSearch
{
bool IsInstantSearch(string query);
}
}

View File

@@ -17,4 +17,4 @@ using System.Runtime.InteropServices;
[assembly: InternalsVisibleTo("Wox")]
[assembly: InternalsVisibleTo("Wox.Core")]
[assembly: InternalsVisibleTo("Wox.Test")]
[assembly: InternalsVisibleTo("Wox.Test")]

View File

@@ -46,6 +46,7 @@
<ItemGroup>
<Compile Include="AllowedLanguage.cs" />
<Compile Include="EventHandler.cs" />
<Compile Include="IInstantSearch.cs" />
<Compile Include="IHttpProxy.cs" />
<Compile Include="IPluginI18n.cs" />
<Compile Include="IPlugin.cs" />