home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / pOSxA.lzx / pOSxA / utility / utility.h < prev   
Encoding:
C/C++ Source or Header  |  1997-03-12  |  507 b   |  27 lines

  1. #ifndef UTILITY_UTILITY_H
  2. #define UTILITY_UTILITY_H
  3.  
  4. /*******************************************************************
  5.  pOS / Amiga adapt
  6. *******************************************************************/
  7.  
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif
  11. #ifndef EXEC_LIBRARY_H
  12. #include <exec/library.h>
  13. #endif
  14.  
  15. #define UTILITYNAME "putility.library"
  16.  
  17.  
  18. struct UtilityBase
  19. {
  20.   struct Library ub_LibNode;
  21.   UBYTE          ub_Language;
  22.   UBYTE          ub_Reserved;
  23. };
  24.  
  25.  
  26. #endif /* UTILITY_UTILITY_H */
  27.