* gaflight_endpoint_equal: * @endpoint: A #GAFlightEndpoint. * @other_endpoint: A #GAFlightEndpoint to be compared. * * Returns: %TRUE if both of them represents the same endpoint, * %FALSE otherwise. * * Since: 5.0.0 */
| 810 | * Since: 5.0.0 |
| 811 | */ |
| 812 | gboolean |
| 813 | gaflight_endpoint_equal(GAFlightEndpoint *endpoint, GAFlightEndpoint *other_endpoint) |
| 814 | { |
| 815 | const auto flight_endpoint = gaflight_endpoint_get_raw(endpoint); |
| 816 | const auto flight_other_endpoint = gaflight_endpoint_get_raw(other_endpoint); |
| 817 | return flight_endpoint->Equals(*flight_other_endpoint); |
| 818 | } |
| 819 | |
| 820 | /** |
| 821 | * gaflight_endpoint_get_locations: |
nothing calls this directly
no test coverage detected