#include "DeskLib:Event.h"              /* Event handlers */
#include "DeskLib:Core.h"               /* TRUE, FALSE and other definitions */

/* Main Program */

int main(void)
{
/* Initialise the WIMP and register task 'Test' ******************************/
  Event_Initialise("Test");
  
/* Continuous polling loop to keep the task alive.  It has to be shut down 
 * from the task manager window. *********************************************/
     
  while(TRUE) Event_Poll();

  return(0);
}
