home *** CD-ROM | disk | FTP | other *** search
- #ifndef CLIB_ASL_PROTOS_H
- #define CLIB_ASL_PROTOS_H
-
- /*******************************************************************
- pOS / Amiga adapt
- *******************************************************************/
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #ifndef UTILITY_TAGITEM_H
- #include <utility/tagitem.h>
- #endif
- #ifndef LIBRARIES_ASL_H
- #include <libraries/asl.h>
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- struct FileRequester *AllocFileRequest( void );
- void FreeFileRequest( struct FileRequester *fileReq );
- BOOL RequestFile( struct FileRequester *fileReq );
- APTR AllocAslRequest( unsigned long reqType, struct TagItem *tagList );
- APTR AllocAslRequestTags( unsigned long reqType, Tag Tag1, ... );
- void FreeAslRequest( APTR requester );
- BOOL AslRequest( APTR requester, struct TagItem *tagList );
- BOOL AslRequestTags( APTR requester, Tag Tag1, ... );
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif /* CLIB_ASL_PROTOS_H */
-