summaryrefslogtreecommitdiffstats
path: root/plugin/rpcplugin/process_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/rpcplugin/process_windows.go')
-rw-r--r--plugin/rpcplugin/process_windows.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugin/rpcplugin/process_windows.go b/plugin/rpcplugin/process_windows.go
new file mode 100644
index 000000000..7be03cacd
--- /dev/null
+++ b/plugin/rpcplugin/process_windows.go
@@ -0,0 +1,17 @@
+package rpcplugin
+
+import (
+ "context"
+ "fmt"
+ "io"
+)
+
+func newProcess(ctx context.Context, path string) (Process, io.ReadWriteCloser, error) {
+ // TODO
+ return nil, nil, fmt.Errorf("not yet supported")
+}
+
+func inheritedProcessIPC() (*IPC, error) {
+ // TODO
+ return nil, fmt.Errorf("not yet supported")
+}