view runtime/worker.h @ 75:0083b2f7b3c7

Partially working implementation of List. Modified build scripts to allow use of other compilers. Fixed some bugs involving method implementations on different types returning different numbers of outputs. Added Fold to the 'builtins' in the comipler.
author Mike Pavone <pavone@retrodev.com>
date Tue, 06 Jul 2010 07:52:59 -0400
parents a844c623c7df
children 7428aa5d6ade
line wrap: on
line source

#ifndef _WORKER_H_
#define _WORKER_H_

#include "object.h"
#include "func.h"
#include "builtin.h"	

object * _internal_worker_alloc(int16_t size);
void _internal_worker_setinput(object * worker, int16_t num, object * val);
object * _internal_worker_getinput(object * worker, int16_t num);
int32_t _internal_worker_hasinput(object * worker, int16_t num);


#endif //_WORKER_H_