summaryrefslogtreecommitdiffstats
path: root/osdep/subprocess-dummy.c
blob: 791c90e566d46daad298c818dc175bfcf81f8d35 (plain)
1
2
3
4
5
6
7
8
9
#include "subprocess.h"

int mp_subprocess(char **args, struct mp_cancel *cancel, void *ctx,
                  subprocess_read_cb on_stdout, subprocess_read_cb on_stderr,
                  char **error)
{
    *error = "unsupported";
    return -1;
}