/* Copyright (c) 2002-2018 Dovecot authors, see the included COPYING file
*/
#ifndef PROGRAM_CLIENT_PRIVATE_H
#define PROGRAM_CLIENT_PRIVATE_H
#include "program-client.h"
enum program_client_error {
};
enum program_client_exit_code {
};
struct program_client_extra_fd {
void *context;
};
struct program_client {
char *path;
const char **args;
char *temp_prefix;
void *context;
bool other_error;
};
const char *path,
const char *const *args,
const struct program_client_settings *set);
enum program_client_error error);
#endif