home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / shell / dialog-0.000 / dialog-0 / dialog-0.6c / samples / install / dialog.h next >
Encoding:
C/C++ Source or Header  |  1995-09-12  |  771 b   |  21 lines

  1. /* This should be extended and then integrated back into the normal
  2.    dialog source code. At the moment, I cannot use header files from
  3.    the current dialog source to get prototypes for the library. */
  4.  
  5. void init_dialog (void);
  6. void dialog_clear (void);
  7. void end_dialog (void);
  8.  
  9. extern int dialog_result;
  10.  
  11. int dialog_msgbox(const char *title, const char *prompt, int height,
  12.         int width, int pause);
  13. int dialog_menu(const char *title, const char *prompt, int height,
  14.         int width, int menu_height, int item_no,
  15.         const char * const * items);
  16. int dialog_textbox(const char *title, const char *file, int height, int width);
  17. extern unsigned char dialog_input_result[];
  18. int dialog_inputbox(const char *title, const char *prompt, int height,
  19.         int width, const char *init);
  20.  
  21.