home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_05 / 9n05039a < prev    next >
Text File  |  1990-11-11  |  313b  |  16 lines

  1.  
  2.     XSizeHints    *sizehints;
  3.  
  4.     sizehints = (XSizeHints *) malloc ( sizeof( XSizeHints ) );
  5.  
  6.     sizehints->flags    = PPosition | PSize;
  7.     sizehints->x        = x;
  8.     sizehints->y        = y;
  9.     sizehints->width    = width;
  10.     sizehints->height    = height;
  11.  
  12.     /* call XSetStandardProperties()... */
  13.  
  14.     /* call  free( sizehints ); */
  15.  
  16.