home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / utilities / wbstartup+ / source / wbstartup+os2.x / progresswindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-26  |  499 b   |  13 lines

  1. struct ProgressWindowData *CreateProgressWindow(struct WBStartupPrefs *prefs);
  2. void CloseProgressWindow(struct ProgressWindowData *data);
  3. void UpdateProgressBar(struct Window *win, int current, int total);
  4. void ShowIconImage(struct ProgressWindowData *data, struct Image *image);
  5. BOOL InteractiveRunProgram(struct Window *win);
  6. void DisplayProgramName(struct ProgressWindowData *data, char *name, BOOL query);
  7.  
  8. struct ProgressWindowData
  9. {
  10.   struct Window *win;    /* This is the window, duhh */
  11. };
  12.  
  13.