/***********************************************************************
*                                                                      *
* testeasy.c                                                           *
*                                                                      *
* a program to test the EasyRequest() function                         *
*                                                                      *
***********************************************************************/


#include <exec/types.h>
#include <intuition/intuition.h>
#include <clib/exec_protos.h>
#include <clib/intuition_protos.h>
#include <stdio.h>

/* declare the structure */
struct EasyStruct myES=
{
   sizeof(struct EasyStruct),
   0,
   "ETB V1.00",
   "CLI-only utility.\nDo not invoke using WorkBench.",
   "Okay"
};




void main()
{
/*  printf("hello world\n");
*/}

void wbmain()
{
   EasyRequest(NULL,&myES,NULL,NULL);
}
