view worker.h @ 1:5afdb14df924

sci: add support for storing results
author David Demelier <markand@malikania.fr>
date Tue, 08 Jun 2021 08:40:01 +0200
parents f1de39079243
children
line wrap: on
line source

#ifndef SCI_WORKER_H
#define SCI_WORKER_H

#include <stdint.h>

#define WORKER_NAME_MAX 32
#define WORKER_DESC_MAX 256

struct worker {
	int64_t id;
	char name[WORKER_NAME_MAX];
	char desc[WORKER_DESC_MAX];
};

#endif /* !SCI_WORKER_H */