
	XSizeHints	*sizehints;

	sizehints = (XSizeHints *) malloc ( sizeof( XSizeHints ) );

	sizehints->flags	= PPosition | PSize;
	sizehints->x		= x;
	sizehints->y		= y;
	sizehints->width	= width;
	sizehints->height	= height;

	/* call XSetStandardProperties()... */

	/* call  free( sizehints ); */

