XSetStandardProperties(display, w, window_name, icon_name, icon_pixmap, argv, argc, hints)
      Display *display;
      Window w;
      char *window_name;
      char *icon_name;
      Pixmap icon_pixmap;
      char **argv;
      int argc;
      XSizeHints *hints;
| display | Specifies the connection to the X server. | 
| w | Specifies the window. | 
| window_name | Specifies the window name, which should be a null-terminated string. | 
| icon_name | Specifies the icon name, which should be a null-terminated string. | 
| icon_pixmap | Specifies the bitmap that is to be used for the icon or None. | 
| argv | Specifies the application's argument list. | 
| argc | Specifies the number of arguments. | 
| hints | Specifies a pointer to the size hints for the window in its normal state. | 
XSetStandardProperties() can generate BadAlloc and BadWindow errors.
| BadAlloc | The server failed to allocate the requested source or server memory. | 
| BadWindow | A value for a Window argument does not name a defined Window. |