/*
 *	File:					MyEZRequest().h
 *	Description:	A easier way to call the system's EasyRequests.
 *
 *	(C) 1993, Ketil Hunn
 *
 */

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);
}
