home *** CD-ROM | disk | FTP | other *** search
- /**
- ** Prototypes for egsrequest.library
- **
- ** Created: 24. Sept 1992 us
- ** Changed: 24. Sept 1992
- **
- **/
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
- #ifndef EGS_EGSINTUI_H
- #include <egs/egsintui.h>
- #endif
- #ifndef EGS_EGSREQUEST_H
- #include <egs/egsrequest.h>
- #endif
-
- ER_ReqContextPtr CreateReqContext();
- void ER_DeleteReqContext(ER_ReqContextPtr con);
- ER_RequestPtr ER_FindRequest(ER_ReqContextPtr con,EI_EIntuiMsgPtr msg);
- LONG ER_DoRequest(ER_RequestPtr req);
- LONG ER_OpenRequest(ER_RequestPtr req,EI_WindowPtr win);
- LONG ER_IterateRequest(ER_RequestPtr req,EI_EIntuiMsgPtr msg);
- void ER_CancelRequest(ER_RequestPtr req);
- void ER_DeleteRequest(ER_RequestPtr freq);
- void ER_ChangeRequestPos(ER_RequestPtr req,WORD x,WORD y);
- void ER_ChangeRequestSize(ER_RequestPtr req,WORD w,WORD h);
-
- ER_FileRequestPtr ER_CreateFileReq(ER_ReqContextPtr con);
- void ER_PutValuesInFileReq(ER_FileRequestPtr freq,char *name,char *path,char *pattern);
- ER_SimpleRequestPtr ER_CreateSimpleRequest(ER_ReqContextPtr con,char *tt,char *key);