home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / clib / asl_protos.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  1KB  |  34 lines

  1. #ifndef  CLIB_ASL_PROTOS_H
  2. #define  CLIB_ASL_PROTOS_H
  3. /*
  4. **    $VER: asl_protos.h 38.3 (19.03.92)
  5. **    Includes Release 39.108
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1990-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12. #ifndef  EXEC_TYPES_H
  13. #include <exec/types.h>
  14. #endif
  15. #ifndef  UTILITY_TAGITEM_H
  16. #include <utility/tagitem.h>
  17. #endif
  18. #ifndef  LIBRARIES_ASL_H
  19. #include <libraries/asl.h>
  20. #endif
  21. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  22.  
  23. /* OBSOLETE -- Please use the generic requester functions instead */
  24.  
  25. struct FileRequester *AllocFileRequest( void );
  26. void FreeFileRequest( struct FileRequester *fileReq );
  27. BOOL RequestFile( struct FileRequester *fileReq );
  28. APTR AllocAslRequest( unsigned long reqType, struct TagItem *tagList );
  29. APTR AllocAslRequestTags( unsigned long reqType, Tag Tag1, ... );
  30. void FreeAslRequest( APTR requester );
  31. BOOL AslRequest( APTR requester, struct TagItem *tagList );
  32. BOOL AslRequestTags( APTR requester, Tag Tag1, ... );
  33. #endif     /* CLIB_ASL_PROTOS_H */
  34.