  /* Fichier clock.dark.c				*/
/* Module appele par le programme principal	*/
/* pour effectuer un effet defini..appele par	*/
/* loadseg					*/
#include	<exec/types.h>
#include	<exec/ports.h>
#include	"/includes/struct.h"
#include	"/includes/tom_gadget.h"
#include 	<hardware/custom.h>
/*
#include	"proc_main.h"
*/

char	*p_text_info=
"       A good old Plasma Effect\n"
"\n"
"    This effect use a loooooot of CPU time\n"
"\n"
"\n"
"     But still by Thomas Landspurg";

extern	struct	appel_proc	*p_data_proc;
int	duree=10;

struct	tom_gadget	my_gadg[]={
	{"_Tempo",	SLIDER,  90, 15,   120, 10,0,1,100,0,&duree},
	{0,		END_LISTE,  0,  0,   0, 0, 0,0,0,0,0}};

UWORD	__saveds	my_rand(UWORD	size)
{
	return(rand()%size);
}

void	proc_init()
{
	p_data_proc->type_screen=SCR_OWN;
}

void	proc_save()
{
}
void	proc_end()
{
}
