summaryrefslogtreecommitdiff
path: root/src/worker.h
blob: 151aa77f8f609ec11a16209f42fa411cb3986104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _BIRUDA_WORKER_HEADER_INCLUDED
#define _BIRUDA_WORKER_HEADER_INCLUDED

typedef enum {
	WORKER_EXECUTION_DIRECT
} worker_execution_mode_t;

const char *worker_exection_mode_str( worker_execution_mode_t mode );

int worker_init( const char *control );
void worker_terminate( );
int worker_free( );

#endif