blob: 34d4918716bf07c49a82ac89b451166dec618f28 (
plain) (
tree)
|
|
#include <stdbool.h>
#include <stdint.h>
#include "jobs.h"
#ifndef EVANIX_H
struct evanix_opts_t {
bool isflake;
bool isdryrun;
bool ispipelined;
bool solver_report;
bool close_unused_fd;
bool check_cache_status;
bool break_evanix;
char *system;
uint32_t max_build;
int (*solver)(struct job **, struct job_clist *, int32_t);
};
extern struct evanix_opts_t evanix_opts;
#define EVANIX_H
#endif
|