int sm_conf_prim_status(struct sm_conf_prim_status_parms *statusp)
typedef struct sm_conf_prim_status_parms {
	tSMChannelId channel;					/* in */
	enum kSMConfStatus {
		kSMConfStatusRunning,
		kSMConfStatusStopped,
		kSMConfStatusActiveInputs,
	} status;						/* out */
	union {
		struct {
			struct conf_active_input {
				tSM_INT id;			/* out */
				tSM_INT power;			/* out */
			} input[4];				/* out */
		} active_inputs;				/* out */
	} u;							/* out */
} SM_CONF_PRIM_STATUS_PARMS;
Returns the current status of the conference or an error to indicate a problem.
When the write event is signalled the user must call this function to determine the nature of the status change.
0 if call completed successfully, otherwise a standard error such as:
This function is part of the Prosody speech processing API.