SERVERCALL

The SERVERCALL enumeration constants indicate the status of server call — returned by IMessageFilter::HandleInComingCall and passed to IMessageFilter::RetryRejectedCall.

Defined in the IMessageFilter interface (msgflt.idl).

typedef enum tagSERVERCALL 
{ 
    SERVERCALL_ISHANDLED     = 0, 
    SERVERCALL_REJECTED      = 1, 
    SERVERCALL_RETRYLATER    = 2 
} SERVERCALL; 
 

Elements

SERVERCALL_ISHANDLED
The object may be able to process the call.
SERVERCALL_REJECTED
The object cannot handle the call due to an unforeseen problem, such as network unavailability.
SERVERCALL_RETRYLATER
The object cannot handle the call at this time. For example, an application might return this value when it is in a user-controlled modal state.

QuickInfo

  Windows NT: Use version 3.1 and later.
  Windows: Use Windows 95 and later.
  Windows CE: Unsupported.
  Header: Declared in objidl.h.

See Also

IMessageFilter::HandleInComingCall, IMessageFilter::RetryRejectedCall