typedef struct {
     char *str;
     char *name;
     Pixmap bitmap;
     Boolean use_default;
     Boolean center;
     int spread;
     Dimension width;
} PromptLine;



static PromptLine default_line = {
     "promptLabel",
     "prompt",
     (Pixmap) NULL,
     False,
     True,
     0,
     0
};

#define MAXPROMPT		10 /* max number of lines in a */
				   /* promptbox */

extern Widget PromptBox();
extern Widget CenteredPromptBox();
