Share via


NM_CONFERENCE_* State

The NM_CONFERENCE_* state enumeration contains values that describe the state of a NetMeeting Conference object. This state results when each of the following methods successfully completes: INmManager::CreateCall, INmConference::Host, INmCall::Accept.

typedef enum tagNmConferenceState{
  NM_CONFERENCE_IDLE                           = 0,
  NM_CONFERENCE_WAITING                        = 1,
  NM_CONFERENCE_INITIALIZING                   = 2,
  NM_CONFERENCE_ACTIVE                         = 3,
} NM_CONFERENCE_STATE;

Elements

  • NM_CONFERENCE_ACTIVE
    The conference is active. Most operations on a conference require it to be in this state.
  • NM_CONFERENCE_IDLE
    The conference is not active. It contains no members or channels.
  • NM_CONFERENCE_INITIALIZING
    The conference is transitioning between the idle and active states. The application should wait for a notification that the state has changed to either waiting or active before attempting to perform any other conference operations.
  • NM_CONFERENCE_WAITING
    A hosted conference with only the local Member participating.

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

INmConference::GetState, INmConferenceNotify::StateChanged