Exemple #1
0
SOL_API int
sol_flow_send_location_packet(struct sol_flow_node *src, uint16_t src_port, const struct sol_location *value)
{
    SOL_FLOW_SEND_PACKET(location);
}
Exemple #2
0
SOL_API int
sol_flow_send_rgb_packet(struct sol_flow_node *src, uint16_t src_port, const struct sol_rgb *value)
{
    SOL_FLOW_SEND_PACKET(rgb);
}
Exemple #3
0
SOL_API int
sol_flow_send_direction_vector_packet(struct sol_flow_node *src, uint16_t src_port, const struct sol_direction_vector *value)
{
    SOL_FLOW_SEND_PACKET(direction_vector);
}
Exemple #4
0
SOL_API int
sol_flow_send_byte_packet(struct sol_flow_node *src, uint16_t src_port, unsigned char value)
{
    SOL_FLOW_SEND_PACKET(byte);
}
Exemple #5
0
SOL_API int
sol_flow_send_drange_value_packet(struct sol_flow_node *src, uint16_t src_port, double value)
{
    SOL_FLOW_SEND_PACKET(drange_value);
}
Exemple #6
0
SOL_API int
sol_flow_send_json_array_packet(struct sol_flow_node *src, uint16_t src_port, const struct sol_blob *value)
{
    SOL_FLOW_SEND_PACKET(json_array);
}
Exemple #7
0
SOL_API int
sol_flow_send_string_slice_packet(struct sol_flow_node *src, uint16_t src_port, const struct sol_str_slice value)
{
    SOL_FLOW_SEND_PACKET(string_slice);
}
Exemple #8
0
SOL_API int
sol_flow_send_string_packet(struct sol_flow_node *src, uint16_t src_port, const char *value)
{
    SOL_FLOW_SEND_PACKET(string);
}
Exemple #9
0
SOL_API int
sol_flow_send_irange_value_packet(struct sol_flow_node *src, uint16_t src_port, int32_t value)
{
    SOL_FLOW_SEND_PACKET(irange_value);
}
Exemple #10
0
SOL_API int
sol_flow_send_timestamp_packet(struct sol_flow_node *src, uint16_t src_port, const struct timespec *value)
{
    SOL_FLOW_SEND_PACKET(timestamp);
}