num = SysReqHandler( Window, IDCMPFlagsPtr, WaitInput )
D0 A0 A1 D0
LONG SysReqHandler( struct Window *, ULONG *, BOOL );
Handles input for a window returned by either
BuildSysRequest() or BuildEasyRequest(). These functions with SysReqHandler() you can perform an "asynchronous" EasyRequest() or
AutoRequest(). That is to say, you can perform other processing while you wait for the requester to be satisfied.
Each time this function is called, it will process all IDCMPMessages that the window has received. If the parameter 'WaitInput' is non-zero, SysReqHandler() will wait for input (by calling WaitPort()) if there are no IDCMP messages.
SysReqHandler() returns the same values as EasyRequest(): A gadget ID greater than equal to 0, and -1 if one of the other IDCMP events were received.
An additional value of -2 is returned if the input processed does not satisfy the requester. In this case, you might perform some processing and call SysReqHandler() again.
- Note:
-
this function does NOT terminate the system request.
Not only must you call
FreeSysRequest() to eliminate the request, but you may also continue processing after an event which would normally terminate a normal call to EasyRequest().
Implementation of EasyRequest() input loop:
window = BuildEasyRequest( ... )
while ( (retval = SysReqHandler( window, idcmp_ptr, TRUE )) == -2 )
{
}
FreeSysRequest( window );
Request a volume, but don't remove the requester when the
user inserts the wrong disk:
struct EasyStruct volumeES = {
sizeof (struct EasyStruct),
0,
"Volume
Request",
"Please insert volume %s in any drive.",
"Cancel"
};
Volume *
getVolume( volname )
UBYTE *volname;
{
struct Window *window;
Volume *volume = NULL;
Volume *findVolume();
int retval;
window = BuildEasyRequest( NULL, &volumeES, IDCMP_DISKINSERTED,
while ( (retval = SysReqHandler( window, NULL, TRUE )) != 0 )
{
/* not cancelled yet */
/* when IDCMP_DISKINSERTED, check for volume */
if (( retval == -1 ) && (volume = findVolume( volname )))
}
FreeSysRequest( window );
return ( volume );
}