Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ErrorReturns error number or 0 if no error (see the References section below.)
hRequestThe handle returned by the CreateRequest function.
StatusFlag to determine the status of the remote process. These are included in the REVCAPI_EQUATES insert (see the References section below) and are described as follows:
 equ UNPROCESSED$ to 0       ;* Server has not begun request.
equ PROCESSING$ to 1        ;* Server is processing request.
equ DATA_AVAILABLE$ to 2    ;* Server has data available.
equ COMPLETED$ to 3         ;* Server has completed request, status
                           ;* information is available.
equ PROC_ERROR$ to 4        ;* Server process failed, status
                           ;* information is available.
equ INFO_AVAILABLE$ to 5    ;* Server has intermediate status
                           ;* information available.
equ INFO_REQUEST$ to 10     ;* Server is requesting information from
                           ;* client.
ReplyThis is supposed to contain information that has been returned from the remote engine. However, there is a known bug where this information is actually returned to the Status parameter instead. Fortunately this parameter is optional and we can use two other functions, GetReply and GetResponseText, to get this information.

...