Function

Valentpacket_get_int

unstable since: 1.0

Declaration [src]

gboolean
valent_packet_get_int (
  JsonNode* packet,
  const char* field,
  int64_t* value
)

Description [src]

Lookup field in the body of packet and assign it to value.

If field is not found or it is not an integer, FALSE will be returned and value will not be set.

Available since: 1.0

Parameters

packet

Type: JsonNode

A KDE Connect packet.

The data is owned by the caller of the function.
field

Type: const char*

Field name.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
value

Type: int64_t*

An int64

The argument will be set by the function.
The argument can be set to NULL by the function.

Return value

Type: gboolean

TRUE, or FALSE on failure.