* gaflight_info_get_total_bytes: * @info: A #GAFlightInfo. * * Returns: The number of total bytes of the information. * * Since: 5.0.0 */
| 1061 | * Since: 5.0.0 |
| 1062 | */ |
| 1063 | gint64 |
| 1064 | gaflight_info_get_total_bytes(GAFlightInfo *info) |
| 1065 | { |
| 1066 | const auto flight_info = gaflight_info_get_raw(info); |
| 1067 | return flight_info->total_bytes(); |
| 1068 | } |
| 1069 | |
| 1070 | typedef struct GAFlightStreamChunkPrivate_ |
| 1071 | { |
nothing calls this directly
no test coverage detected