home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / extra18 / bars / bar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-23  |  903 b   |  32 lines

  1. /* ================================================= */
  2. /*                    BAR.H                          */
  3. /*         (C) 1991 Georg Pohl & DMV-Verlag          */
  4. /* ------------------------------------------------- */
  5. /* Headerfile für alle mit bar.c oder bars.c zuge-   */
  6. /* linkten Routinen.                                 */
  7. /* ================================================= */
  8.  
  9. #define DO       (1)
  10. #define DONOT    (0)
  11. #define UNKNOWN  (0L)
  12. #define NOTEXT   '\0'
  13.  
  14. typedef void BAR;
  15.  
  16. extern int  wx,
  17.             wy,
  18.             wwide,
  19.             whight,
  20.             wcolor,
  21.             bcolor,
  22.             shadow;
  23. extern long time_diff;
  24.  
  25. BAR * init(const char *, const char *,
  26.            const char *, const long, short);
  27. void  show_bar(BAR *, long );
  28. BAR * done(BAR *);
  29. int   copyfile(char *, char *);
  30.  
  31. /* ============================================ */
  32.