Function
Valentpacket_get_double
unstable since: 1.0
Declaration [src]
gboolean
valent_packet_get_double (
JsonNode* packet,
const char* field,
double* value
)
Description [src]
Lookup field
in the body of packet
and assign it to value
.
If field
is not found or it is not a double, 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:
double*
A double.
The argument will be set by the function. The argument can be set to NULL
by the function.