#ifndef PROCESS_H
#define PROCESS_H


#include <exec/types.h>


typedef int ( * ipfct )( void );

BOOL StartProcess( struct Task * parent
                 , STRPTR name
                 , ipfct fp
                 , LONG priority
                 , ULONG stacksize 
                 );

void WaitProcess( void );


#endif
