Method

ECalClientcreate_object_sync

since: 3.2

Declaration [src]

gboolean
e_cal_client_create_object_sync (
  ECalClient* client,
  ICalComponent* icalcomp,
  ECalOperationFlags opflags,
  gchar** out_uid,
  GCancellable* cancellable,
  GError** error
)

Description [src]

Requests the calendar backend to create the object specified by the icalcomp argument. Some backends would assign a specific UID to the newly created object, in those cases that UID would be returned in the out_uid argument. This function does not modify the original icalcomp if its UID changes. Returned out_uid should be freed with g_free().

Available since: 3.2

Parameters

icalcomp

Type: None

The component to create.

The data is owned by the caller of the method.
opflags

Type: ECalOperationFlags

Bit-or of ECalOperationFlags.

out_uid

Type: gchar**

Return value for the UID assigned to the new component by the calendar backend.

The argument will be set by the function.
The argument can be set to NULL by the method.
The argument can be NULL.
The caller of the method takes ownership of the returned data, and is responsible for freeing it.
The value is a NUL terminated UTF-8 string.
cancellable

Type: GCancellable

A GCancellable; can be NULL.

The argument can be NULL.
The data is owned by the caller of the method.
error

Type: GError **

The return location for a recoverable error.

The argument can be NULL.
If the return location is not NULL, then you must initialize it to a NULL GError*.
The argument will be left initialized to NULL by the method if there are no errors.
In case of error, the argument will be set to a newly allocated GError; the caller will take ownership of the data, and be responsible for freeing it.

Return value

Type: gboolean

TRUE if successful, FALSE otherwise.