summaryrefslogtreecommitdiff
path: root/tools/win32/process.h
blob: 3be9ac458692b93f5467838fe0ff153db89ab4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2007 - 2021, Alan Antonuk and the rabbitmq-c contributors.
// SPDX-License-Identifier: mit

#include <windef.h>

struct pipeline {
  HANDLE proc_handle;
  int infd;
};

extern void pipeline(const char *const *argv, struct pipeline *pl);
extern int finish_pipeline(struct pipeline *pl);