home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / reference / amiga_mail_vol2 / iii-29 / dillo.h < prev    next >
C/C++ Source or Header  |  1996-01-30  |  457b  |  23 lines

  1. #ifndef DILLO_H
  2. #define DILLO_H
  3.  
  4. /*
  5. **  dillo.h - Header file for armadillo.library code modules
  6. **            © Copyright 1993, Commodore-Amiga Inc.
  7. **            All Rights Reserved.
  8. **            Written by John Wiederhirn
  9. **
  10. **  This is the header file for the armadillo.library code modules.  It
  11. **  just gives a basic structure definition.
  12. **
  13. */
  14.  
  15. struct Armadillo
  16. {
  17.     UBYTE   name[32];
  18.     ULONG   weight;
  19.     BOOL    flat;
  20. };
  21.  
  22. #endif /* DILLO_H */
  23.