view runtime/worker.h @ 81:dbe95bfec970

Very basic file access is now working; however, there's a bug involving assigning a literal to a named pipe inside a conditional block that needs fixing
author Mike Pavone <pavone@retrodev.com>
date Thu, 22 Jul 2010 05:39:08 +0000
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_