* gaflight_info_get_descriptor: * @info: A #GAFlightInfo. * * Returns: (transfer full): The #GAFlightDescriptor of the information. * * Since: 5.0.0 */
| 1010 | * Since: 5.0.0 |
| 1011 | */ |
| 1012 | GAFlightDescriptor * |
| 1013 | gaflight_info_get_descriptor(GAFlightInfo *info) |
| 1014 | { |
| 1015 | const auto flight_info = gaflight_info_get_raw(info); |
| 1016 | return gaflight_descriptor_new_raw(&(flight_info->descriptor())); |
| 1017 | } |
| 1018 | |
| 1019 | /** |
| 1020 | * gaflight_info_get_endpoints: |
nothing calls this directly
no test coverage detected