home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / amiga / chiputil / millibar.lha / millibar010 / millibar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-19  |  430 b   |  28 lines

  1. /* Header for millibar.library */
  2. /* Stefan Popp 06/2001         */
  3. /* Version 0.10                */
  4.  
  5. #ifndef MILLIBAR_H
  6. #define MILLIBAR_H
  7.  
  8. #include <clib/graphics_protos.h>
  9. #include <stdlib.h>
  10.  
  11.  
  12. typedef struct mbcpar {
  13.  
  14.     RastPort *rp;
  15.     char     *code;
  16.     int      codetype;
  17.     int      xpos;
  18.     int      ypos;
  19.     int      xscale;
  20.     int      yscale;
  21.     int      drawmode;
  22.     
  23.  
  24. } MBC_PAR;
  25.  
  26. #define CODABAR 1
  27.  
  28. #endif