Share via


NM_CALL_* State

The NM_CALL_* state enumeration defines the possible states of a NetMeeting local call.

typedef enum tagNmCallState{
  NM_CALL_INVALID       = 0,
  NM_CALL_INIT          = 1,
  NM_CALL_RING          = 2,
  NM_CALL_SEARCH        = 3,
  NM_CALL_WAIT          = 4,
  NM_CALL_ACCEPTED      = 5,
  NM_CALL_REJECTED      = 6,
  NM_CALL_CANCELED      = 7,
} NM_CALL_STATE;

Elements

  • NM_CALL_INVALID
    The call is invalid.
  • NM_CALL_INIT
    The call is being initialized.
  • NM_CALL_RING
    The incoming call is waiting for a response. (For more information, see INmCall::Accept) and INmCall::Reject).
  • NM_CALL_SEARCH
    The outgoing call is in the process of finding the destination address.
  • NM_CALL_WAIT
    The outgoing call is waiting for a response from the remote system.
  • NM_CALL_ACCEPTED
    The call has been accepted.
  • NM_CALL_REJECTED
    The call was rejected or ignored. See the version-change information in the comments at the end of INmCall::GetState.
  • NM_CALL_CANCELED
    The call has been canceled. See the version-change information in the comments at the end of INmCall::GetState.

Requirements

**  Windows NT/2000:** Requires Windows NT 4.0 SP3 or later.
**  Windows 95/98:** Requires Windows 95 or later. Available as a redistributable for Windows 95.
**  Header:** Imsconf2.idl.

See Also

INmCall::GetState, INmCallNotify::StateChanged