mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
Implement IInstantSearch for CMD and WebSearch plugin
This commit is contained in:
12
Wox.Plugin/IInstantSearch.cs
Normal file
12
Wox.Plugin/IInstantSearch.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
@@ -17,4 +17,4 @@ using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: InternalsVisibleTo("Wox")]
|
||||
[assembly: InternalsVisibleTo("Wox.Core")]
|
||||
[assembly: InternalsVisibleTo("Wox.Test")]
|
||||
[assembly: InternalsVisibleTo("Wox.Test")]
|
||||
|
||||
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user