SERVERCALL enumeration (objidl.h)

Indicates the status of server call.

Syntax

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

Constants

 
SERVERCALL_ISHANDLED
Value: 0
The object may be able to process the call.
SERVERCALL_REJECTED
Value: 1
The object cannot handle the call due to an unforeseen problem, such as network unavailability.
SERVERCALL_RETRYLATER
Value: 2
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.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header objidl.h

See also

IMessageFilter::HandleInComingCall

IMessageFilter::RetryRejectedCall