Home  /  Autodocs  /  dos.library

NAME

VolumeRequestHook
Request insertion of a volume (V47)

SYNOPSIS

res = VolumeRequestHook(volume)
D0 D1

LONG VolumeRequestHook(UBYTE *volume)

FUNCTION

This function is called by the dos.library itself in case a program attempts to access a volume that is currently not mounted or not inserted. By default, this function returns -1, indicating that the dos.library should show its default requester, i.e. "Please insert volume...". The name of the requested volume is provided as argument. A user-supplied application may replace this function and thus provide a more elaborate requester.

INPUTS

A NUL terminated C string without terminating colon.

RESULT

res
-1 in case the default dos.library volume requester should be shown.

0 in case the insertion shall be aborted, i.e. the user canceled the request.

1 in case the access shall be retried.

SEE ALSO

GetDeviceProc()