home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / ace_basic / ace / include / utility / utility.h < prev   
C/C++ Source or Header  |  1977-12-31  |  930b  |  57 lines

  1. #ifndef UTILITY_UTILITY_H
  2. #define UTILITY_UTILITY_H 1
  3. /*
  4. ** utility.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for utility.h
  17. */
  18. #ifndef UtilityBasePtr
  19. #define UtilityBasePtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for utility.h
  23. */
  24.  
  25.  
  26.  
  27. /*****************************************************************************/
  28.  
  29.  
  30. #ifndef EXEC_TYPES_H
  31. #include <exec/types.h>
  32. #endif
  33.  
  34. #ifndef EXEC_LIBRARIES_H
  35. #include <exec/libraries.h>
  36. #endif
  37.  
  38.  
  39. /*****************************************************************************/
  40.  
  41.  
  42. #define UTILITYNAME "utility.library"
  43.  
  44.  
  45. STRUCT UtilityBase
  46.  
  47.     _Library ub_LibNode 
  48.     BYTE       ub_Language 
  49.     BYTE       ub_Reserved 
  50. END STRUCT 
  51.  
  52.  
  53. /*****************************************************************************/
  54.  
  55.  
  56. #endif /* UTILITY_UTILITY_H */
  57.