/*
**      $VER: SampleFuncs.c 1.0 (14.8.96)
**
**      Demo functions for example.library
**
**      (C) Copyright 1996 Andreas R. Kleinert
**      All Rights Reserved.
*/

#include <exec/types.h>
#include <exec/memory.h>

#include <intuition/intuition.h>

#include <proto/exec.h>
#include <proto/intuition.h>


ULONG __saveds __asm EXF_TestRequest( register __d1 UBYTE *title, register __d2 UBYTE *body, register __d3 UBYTE *gadgets)
{
 ULONG                       idcmp = NULL;
 struct EasyStruct __aligned estr;

 estr.es_StructSize   = sizeof(struct EasyStruct);
 estr.es_Flags        = NULL;
 estr.es_Title        = title;
 estr.es_TextFormat   = body;
 estr.es_GadgetFormat = gadgets;

 return( (ULONG) EasyRequestArgs(NULL, &estr, &idcmp, NULL));
}
