/*
 *	File:					MyEZRequest().h
 *	Description:	A frontend to the system's EasyRequests.
 *
 *	(C) 1993-1994, Ketil Hunn
 *
 */

#ifndef	MYEZREQUEST_H
#define	MYEZREQUEST_H

long MyEZRequest(char *title, char *format, char *buttons, char *param)
{
	struct EasyStruct myES = {
		sizeof(struct EasyStruct),
		0,
		0,
		0,
		0,
	};

	myES.es_Title=title;
	myES.es_TextFormat=format;
	myES.es_GadgetFormat=buttons;
	return EasyRequest(NULL, &myES, NULL, param);
}

#endif
