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

#ifndef	GETWINPTR_H
#define	GETWINPTR_H

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

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

#endif
