comparison runtime/worker.h @ 74:a844c623c7df

Add support for Worker type
author Mike Pavone <pavone@retrodev.com>
date Thu, 01 Jul 2010 21:32:08 -0400
parents
children 7428aa5d6ade
comparison
equal deleted inserted replaced
73:6a1a7d5cc2d9 74:a844c623c7df
1 #ifndef _WORKER_H_
2 #define _WORKER_H_
3
4 #include "object.h"
5 #include "func.h"
6 #include "builtin.h"
7
8 object * _internal_worker_alloc(int16_t size);
9 void _internal_worker_setinput(object * worker, int16_t num, object * val);
10 object * _internal_worker_getinput(object * worker, int16_t num);
11 int32_t _internal_worker_hasinput(object * worker, int16_t num);
12
13
14 #endif //_WORKER_H_