mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
14 lines
450 B
Plaintext
14 lines
450 B
Plaintext
|
|
namespace PowerToys
|
||
|
|
{
|
||
|
|
namespace Interop
|
||
|
|
{
|
||
|
|
delegate void TwoWayPipeIPCReadCallback(String message);
|
||
|
|
[default_interface] runtimeclass TwoWayPipeMessageIPCManaged : Windows.Foundation.IClosable
|
||
|
|
{
|
||
|
|
TwoWayPipeMessageIPCManaged(String inputPipeName, String outputPipeName, TwoWayPipeIPCReadCallback _callback);
|
||
|
|
void Send(String msg);
|
||
|
|
void Start();
|
||
|
|
void End();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|