home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / clib / asl_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  881 b   |  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 38.56
  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.  
  22.  
  23.  
  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 
  34.