home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / ace_basic / ace / include / funcs / disk_funcs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1978-01-01  |  695 b   |  28 lines

  1. #ifndef  FUNCS_DISK_FUNCS_H
  2. #define  FUNCS_DISK_FUNCS_H
  3.  
  4. /*
  5. **
  6. ** Function declarations for ACE Basic
  7. **
  8. ** Note: Translated to ACE by Nils Sjoholm
  9. **
  10. ** Date: 11-Oct-95 TO 14-Oct-95
  11. **
  12. */              
  13.  
  14. #ifndef  EXEC_TYPESH
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. DECLARE FUNCTION BOOL AllocUnit( LONGINT unitNum ) LIBRARY disk
  19. DECLARE FUNCTION FreeUnit( LONGINT unitNum ) LIBRARY disk
  20. DECLARE FUNCTION STRUCTPTR GetUnit( STRUCTPTR unitPointer ) LIBRARY disk
  21. DECLARE FUNCTION GiveUnit() LIBRARY disk
  22. DECLARE FUNCTION LONGINT  GetUnitID( LONGINT unitNum ) LIBRARY disk
  23.  
  24. /*------ new for V37 ------*/
  25. DECLARE FUNCTION LONGINT ReadUnitID( LONGINT unitNum ) LIBRARY disk
  26.  
  27. #endif   /* FUNCS_DISK_FUNCS_H */
  28.