VOICE All Call Status

VOICE All Call Status

Synopsis

                    QmiIndicationVoiceAllCallStatusOutput;
                    QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall;
                    QmiIndicationVoiceAllCallStatusOutputCallInformationCall;

QmiIndicationVoiceAllCallStatusOutput * qmi_indication_voice_all_call_status_output_ref
                                                        (QmiIndicationVoiceAllCallStatusOutput *self);
void                qmi_indication_voice_all_call_status_output_unref
                                                        (QmiIndicationVoiceAllCallStatusOutput *self);
gboolean            qmi_indication_voice_all_call_status_output_get_remote_party_number
                                                        (QmiIndicationVoiceAllCallStatusOutput *self,
                                                         GArray **value_remote_party_number,
                                                         GError **error);
gboolean            qmi_indication_voice_all_call_status_output_get_call_information
                                                        (QmiIndicationVoiceAllCallStatusOutput *self,
                                                         GArray **value_call_information,
                                                         GError **error);

Object Hierarchy

  GBoxed
   +----QmiIndicationVoiceAllCallStatusOutput

Description

Details

QmiIndicationVoiceAllCallStatusOutput

typedef struct _QmiIndicationVoiceAllCallStatusOutput QmiIndicationVoiceAllCallStatusOutput;

The QmiIndicationVoiceAllCallStatusOutput structure contains private data and should only be accessed using the provided API.


QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall

typedef struct {
    guint8 id;
    QmiVoicePresentation presentation_indicator;
    gchar *type;
} QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall;

A QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall struct.

guint8 id;

a guint8.

QmiVoicePresentation presentation_indicator;

a QmiVoicePresentation.

gchar *type;

a string.

QmiIndicationVoiceAllCallStatusOutputCallInformationCall

typedef struct {
    guint8 id;
    QmiVoiceCallState state;
    QmiVoiceCallType type;
    QmiVoiceCallDirection direction;
    QmiVoiceCallMode mode;
    gboolean multipart_indicator;
    QmiVoiceAls als;
} QmiIndicationVoiceAllCallStatusOutputCallInformationCall;

A QmiIndicationVoiceAllCallStatusOutputCallInformationCall struct.

guint8 id;

a guint8.

QmiVoiceCallState state;

a QmiVoiceCallState.

QmiVoiceCallType type;

a QmiVoiceCallType.

QmiVoiceCallDirection direction;

a QmiVoiceCallDirection.

QmiVoiceCallMode mode;

a QmiVoiceCallMode.

gboolean multipart_indicator;

a gboolean.

QmiVoiceAls als;

a QmiVoiceAls.

qmi_indication_voice_all_call_status_output_ref ()

QmiIndicationVoiceAllCallStatusOutput * qmi_indication_voice_all_call_status_output_ref
                                                        (QmiIndicationVoiceAllCallStatusOutput *self);

Atomically increments the reference count of self by one.

self :

a QmiIndicationVoiceAllCallStatusOutput.

Returns :

the new reference to self.

qmi_indication_voice_all_call_status_output_unref ()

void                qmi_indication_voice_all_call_status_output_unref
                                                        (QmiIndicationVoiceAllCallStatusOutput *self);

Atomically decrements the reference count of self by one. If the reference count drops to 0, self is completely disposed.


qmi_indication_voice_all_call_status_output_get_remote_party_number ()

gboolean            qmi_indication_voice_all_call_status_output_get_remote_party_number
                                                        (QmiIndicationVoiceAllCallStatusOutput *self,
                                                         GArray **value_remote_party_number,
                                                         GError **error);

Get the 'Remote Party Number' field from self.

self :

a QmiIndicationVoiceAllCallStatusOutput.

value_remote_party_number :

a placeholder for the output GArray of QmiIndicationVoiceAllCallStatusOutputRemotePartyNumberCall elements, or NULL if not required. Do not free it, it is owned by self.

error :

Return location for error or NULL.

Returns :

TRUE if the field is found, FALSE otherwise.

qmi_indication_voice_all_call_status_output_get_call_information ()

gboolean            qmi_indication_voice_all_call_status_output_get_call_information
                                                        (QmiIndicationVoiceAllCallStatusOutput *self,
                                                         GArray **value_call_information,
                                                         GError **error);

Get the 'Call Information' field from self.

self :

a QmiIndicationVoiceAllCallStatusOutput.

value_call_information :

a placeholder for the output GArray of QmiIndicationVoiceAllCallStatusOutputCallInformationCall elements, or NULL if not required. Do not free it, it is owned by self.

error :

Return location for error or NULL.

Returns :

TRUE if the field is found, FALSE otherwise.