home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 113 / EnigmaAmiga113CD.iso / indispensabili / wbstartup / wbstartup+v2.8 / source / wbstartup+os3.x / progresswindow.h < prev    next >
C/C++ Source or Header  |  1995-11-01  |  840b  |  17 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 LoadBitmap(struct WBStartupPrefs *prefs, struct ProgressWindowData *data, struct Screen *scr);
  6. BOOL InteractiveRunProgram(struct Window *win);
  7. void DisplayProgramName(struct ProgressWindowData *data, char *name, BOOL query);
  8.  
  9. struct ProgressWindowData
  10. {
  11.   struct Window *win;    /* This is the window, duhh */
  12.   struct BitMap *bitmap; /* This is the bitmap for our background */
  13.   struct BitMap *iconundobitmap;     /* bitmap to clear the icons with */
  14.   struct BitMap *filenameundobitmap; /* bitmap to clear the filenames in interactive mode with */
  15. };
  16.  
  17.