/*
 *	File:					GetWinPtr().h
 *	Description:	Returns a struct Window pointer
 *
 *	(C) 1993, Ketil Hunn
 *
 */

struct Window *GetWinPtr(APTR win)
{
	struct Window *Window=NULL;

	get(win, MUIA_Window_Window, &Window);
	return Window;
}
