Files
cworker/cworker.h
2023-08-14 23:54:18 +02:00

19 lines
323 B
C

#ifndef CWORKER_H_QWERTY
#define CWORKER_H_QWERTY
#include <stdint.h>
typedef struct {
int64_t port;
} cworker_t;
int cworker_init(cworker_t* worker);
int cworker_detach(cworker_t* worker);
int cworker_configure(cworker_t* worker);
int cworker_build(cworker_t* worker);
int cworker_run(cworker_t* worker);
#endif